# Contributor: Ronald van Haren # Contributor: Tom Gundersen # Contributor: Mark Rosenstand pkgbase=fuse3 pkgname=(fuse-common fuse3) pkgver=3.14.0 pkgrel=1 pkgdesc='Interface for userspace programs to export a filesystem to the Linux kernel' url='https://github.com/libfuse/libfuse' arch=('x86_64') license=('GPL2') makedepends=('pkg-config' 'meson' 'udev') options=('!emptydirs') source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}) sha256sums=('96115b2a8ff34bd1e0c7b00c5dfd8297571d7e165042b94498c9a26356a9a70a' 'SKIP') validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath build() { cd fuse-$pkgver rm -rf build meson --prefix=/usr --sbindir=bin -D examples=false . build cd build ninja } package_fuse-common() { pkgdesc="Common files for fuse2/3 packages" backup=(etc/fuse.conf) install -Dm644 fuse-${pkgver}/util/fuse.conf "${pkgdir}"/etc/fuse.conf } package_fuse3() { depends=('fuse-common' 'glibc') cd fuse-$pkgver/build DESTDIR="${pkgdir}" ninja install rm -r "${pkgdir}"/etc/init.d rm -r "${pkgdir}"/etc/fuse.conf # static device nodes are handled by udev rm -r "${pkgdir}"/dev }