]> git.proxmox.com Git - mirror_zfs-debian.git/blob - PKGBUILD-zfs.in
Linux 3.4 compat, d_make_root() replaces d_alloc_root()
[mirror_zfs-debian.git] / PKGBUILD-zfs.in
1 # Maintainer: Prakash Surya <surya1@llnl.gov>
2 pkgname=@ZFS_META_NAME@
3 pkgver=@ZFS_META_VERSION@
4 pkgrel=@ZFS_META_RELEASE@
5 pkgdesc="Contains the libzfs library and support utilities for the zfs file system."
6 arch=(x86_64)
7 url="git://github.com/zfsonlinux/zfs.git"
8 license=(@ZFS_META_LICENSE@)
9 depends=('spl' 'zlib' 'e2fsprogs')
10 backup=('etc/zfs/zdev.conf')
11 source=(@ZFS_META_NAME@-@ZFS_META_VERSION@.tar.gz)
12
13 build() {
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
25 package() {
26 cd $srcdir/@ZFS_META_NAME@-@ZFS_META_VERSION@
27 make DESTDIR=$pkgdir install
28 }