# Maintainer: Jan Houben # Contributor: Jesus Alvarez # # This PKGBUILD was generated by the archzfs build scripts located at # # http://github.com/archzfs/archzfs # pkgname="zfs-utils" pkgver=2.2.3 pkgrel=1 pkgdesc="Kernel module support files for the Zettabyte File System." makedepends=("python" "python-setuptools" "python-cffi") optdepends=("python: pyzfs and extra utilities", "python-cffi: pyzfs") arch=("x86_64") url="http://openzfs.org/" source=("https://github.com/openzfs/zfs/releases/download/zfs-${pkgver}/zfs-${pkgver}.tar.gz" "zfs-utils.initcpio.install" "zfs-utils.initcpio.hook" "zfs-utils.initcpio.zfsencryptssh.install") sha256sums=("30a512f34ec5c841b8b2b32cc9c1a03fd49391b26c9164d3fb30573fb5d81ac3" "d19476c6a599ebe3415680b908412c8f19315246637b3a61e811e2e0961aea78" "569089e5c539097457a044ee8e7ab9b979dec48f69760f993a6648ee0f21c222" "93e6ac4e16f6b38b2fa397a63327bcf7001111e3a58eb5fb97c888098c932a51") license=("CDDL") groups=("archzfs-linux") provides=("zfs-utils" "spl-utils") install=zfs-utils.install conflicts=("zfs-utils" "spl-utils") replaces=("zfs-utils-linux" "zfs-utils-linux-lts" "zfs-utils-common") backup=('etc/zfs/zed.d/zed.rc' 'etc/default/zfs' 'etc/modules-load.d/zfs.conf' 'etc/sudoers.d/zfs') build() { cd "${srcdir}/zfs-${pkgver}" ./autogen.sh ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin --with-mounthelperdir=/usr/bin \ --libdir=/usr/lib --datadir=/usr/share --includedir=/usr/include \ --with-udevdir=/usr/lib/udev --libexecdir=/usr/lib \ --with-config=user --enable-systemd --enable-pyzfs \ --with-zfsexecdir=/usr/lib/zfs --localstatedir=/var make } package() { cd "${srcdir}/zfs-${pkgver}" make DESTDIR="${pkgdir}" install # Remove uneeded files rm -r "${pkgdir}"/etc/init.d rm -r "${pkgdir}"/usr/share/initramfs-tools rm -r "${pkgdir}"/usr/lib/modules-load.d # Autoload the zfs module at boot mkdir -p "${pkgdir}/etc/modules-load.d" printf "%s\n" "zfs" > "${pkgdir}/etc/modules-load.d/zfs.conf" # fix permissions chmod 750 ${pkgdir}/etc/sudoers.d chmod 440 ${pkgdir}/etc/sudoers.d/zfs # Install the support files install -D -m644 "${srcdir}"/zfs-utils.initcpio.hook "${pkgdir}"/usr/lib/initcpio/hooks/zfs install -D -m644 "${srcdir}"/zfs-utils.initcpio.install "${pkgdir}"/usr/lib/initcpio/install/zfs install -D -m644 "${srcdir}"/zfs-utils.initcpio.zfsencryptssh.install "${pkgdir}"/usr/lib/initcpio/install/zfsencryptssh install -D -m644 contrib/bash_completion.d/zfs "${pkgdir}"/usr/share/bash-completion/completions/zfs }