Date: Friday, February 10, 2023 @ 16:24:52
Author: anatolik
Revision: 468478
archrelease: copy trunk to testing-x86_64
Added:
fuse3/repos/testing-x86_64/
fuse3/repos/testing-x86_64/PKGBUILD
(from rev 468477, fuse3/trunk/PKGBUILD)
fuse3/repos/testing-x86_64/keys/
----------+
PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
Copied: fuse3/repos/testing-x86_64/PKGBUILD (from rev 468477,
fuse3/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-02-10 16:24:52 UTC (rev 468478)
@@ -0,0 +1,48 @@
+# Contributor: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Gundersen <[email protected]>
+# Contributor: Mark Rosenstand <[email protected]>
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.13.1
+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=('6cd0759944c9aeb3d078b24a97b8a5cd5d49a0b8b7f15f85f32ac0c8a662fb6e'
+ 'SKIP')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath
<[email protected]>
+
+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
+}