#!/usr/bin/bash # JOBoRun : Jwm OpenBox Obarun RUNit # Maintainer : Joe Bo Run # PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname" # Website : https://pozol.eu #-----------------------------------------| DESCRIPTION |--------------------------------------- pkgbase=fuse3 pkgname=(fuse-common fuse3) pkgver=3.11.0 pkgrel=01 arch=('x86_64') url='https://github.com/libfuse/libfuse' makedepends=('pkg-config' 'meson' 'eudev') options=(!emptydirs) source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}) 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() { pkgdesc="A library that makes it possible to implement a filesystem in a userspace program." 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 } #---- license gpg-key sha256sums ---- license=('GPL2') validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath sha256sums=(8982c4c521daf3974dda8a5d55d575c988da13a571970f00aea149eb54fdf14c # fuse-3.11.0.tar.xz 43b259425a3135e65b8ef8e4ab71401f472640060fdace16f20aa012c4f87ddd) # fuse-3.11.0.tar.xz.asc