2016-12-13 01:32:03 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - upstream patch for AArch64
|
|
|
|
|
2024-07-12 23:23:10 +00:00
|
|
|
# Contributor: Ronald van Haren <ronald.archlinux.org>
|
|
|
|
# Contributor: Tom Gundersen <teg@jklm.no>
|
|
|
|
# Contributor: Mark Rosenstand <mark@archlinux.org>
|
|
|
|
|
2016-12-13 01:32:03 +00:00
|
|
|
pkgname=fuse2
|
2019-01-08 00:40:16 +00:00
|
|
|
pkgver=2.9.9
|
2024-07-12 23:23:10 +00:00
|
|
|
pkgrel=5
|
|
|
|
pkgdesc='Interface for userspace programs to export a filesystem to the Linux kernel'
|
2016-12-13 01:32:03 +00:00
|
|
|
url='https://github.com/libfuse/libfuse'
|
2024-07-12 23:23:10 +00:00
|
|
|
arch=('x86_64')
|
2016-12-13 01:32:03 +00:00
|
|
|
license=('GPL2')
|
2024-07-12 23:23:10 +00:00
|
|
|
depends=('glibc' 'fuse-common')
|
|
|
|
makedepends=('pkg-config')
|
2016-12-13 06:13:34 +00:00
|
|
|
provides=(fuse=$pkgver) # TODO: remove it once all packages start to use 'fuse2' name
|
2016-12-13 01:32:03 +00:00
|
|
|
replaces=('fuse')
|
|
|
|
conflicts=('fuse')
|
2024-07-12 23:23:10 +00:00
|
|
|
options=('!emptydirs')
|
2016-12-13 01:32:03 +00:00
|
|
|
source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.gz{,.asc}
|
2024-07-12 23:23:10 +00:00
|
|
|
conditionally-define-closefrom.patch
|
2016-12-13 01:32:03 +00:00
|
|
|
https://github.com/libfuse/libfuse/commit/914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch)
|
2019-01-08 00:40:16 +00:00
|
|
|
sha1sums=('943ba651b14bc4a3c6fd959ed4b8c04f4a59032d'
|
2016-12-13 01:32:03 +00:00
|
|
|
'SKIP'
|
2024-07-12 23:23:10 +00:00
|
|
|
'90750cd0839c1ee427314241f9ea5f054c3335d8'
|
|
|
|
'0eac15084300e71129eaf3f39b8b7b25a6c18cab')
|
|
|
|
sha512sums=('3d82fafd04f2924299bb09d2bb144935fa004a43fb9a6568e2e1cc5a60fded2efa1711029a0d7f12b3e6e4501f7217f2ee3545646d89da8dece083cb390f23e2'
|
|
|
|
'SKIP'
|
|
|
|
'0836d1693bea203b562a86c992107ee48766f41bb05a31e9af41009d2270ac84d7881aa5bc2a11ed478cd03985876aca5080341ddea701a12a630a36e1b1a80b'
|
|
|
|
'6615563894b3c402468db975c227a531a225848a3ce3e802d25081480d356b53b64ce7ccf60083b7d7e069cb553f4add71f113f119d3a7d02888fee96fc74a73')
|
2016-12-13 01:32:03 +00:00
|
|
|
validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath <Nikolaus@rath.org>
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd fuse-$pkgver
|
|
|
|
patch -p1 -i ../914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch
|
2024-07-12 23:23:10 +00:00
|
|
|
patch -Np1 -i ${srcdir}/conditionally-define-closefrom.patch
|
|
|
|
autoreconf -i
|
2016-12-13 01:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd fuse-$pkgver
|
|
|
|
|
2019-09-19 04:35:18 +00:00
|
|
|
UDEV_RULES_PATH=/usr/lib/udev/rules.d MOUNT_FUSE_PATH=/usr/bin ./configure --prefix=/usr --libdir=/usr/lib --enable-lib --enable-util --disable-example
|
2016-12-13 01:32:03 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd fuse-$pkgver
|
|
|
|
|
2024-07-12 23:23:10 +00:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2016-12-13 01:32:03 +00:00
|
|
|
|
|
|
|
# Remove init script in wrong path
|
|
|
|
# Don't add our own for now, as fusectl fs oopses on 2.6.18
|
2024-07-12 23:23:10 +00:00
|
|
|
rm -r "${pkgdir}"/etc/init.d
|
2016-12-13 01:32:03 +00:00
|
|
|
|
|
|
|
# static device nodes are handled by udev
|
2024-07-12 23:23:10 +00:00
|
|
|
rm -r "${pkgdir}"/dev
|
2016-12-13 01:32:03 +00:00
|
|
|
}
|