]> git.proxmox.com Git - mirror_zfs.git/blame - PKGBUILD-zfs.in
Support the fallocate() file operation.
[mirror_zfs.git] / PKGBUILD-zfs.in
CommitLineData
6ba3b446
PS
1# Maintainer: Prakash Surya <surya1@llnl.gov>
2pkgname=@ZFS_META_NAME@
3pkgver=@ZFS_META_VERSION@
4pkgrel=@ZFS_META_RELEASE@
5pkgdesc="Contains the libzfs library and support utilities for the zfs file system."
6arch=(x86_64)
7url="git://github.com/zfsonlinux/zfs.git"
8license=(@ZFS_META_LICENSE@)
9depends=('spl' 'zlib' 'e2fsprogs')
10backup=('etc/zfs/zdev.conf')
11source=(@ZFS_META_NAME@-@ZFS_META_VERSION@.tar.gz)
12
13build() {
14 cd $srcdir/@ZFS_META_NAME@-@ZFS_META_VERSION@
15 ./configure --with-config=user \
16 --prefix=/ \
17 --sysconfdir=/etc \
18 --libexecdir=/usr/libexec \
19 --datadir=/usr/share \
20 --includedir=/usr/include \
21 --with-udevdir=/lib/udev
22 make
23}
24
25package() {
26 cd $srcdir/@ZFS_META_NAME@-@ZFS_META_VERSION@
27 make DESTDIR=$pkgdir install
28}