opt/fuse/Pkgfile

25 lines
746 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Interface for userspace filesystems
# URL: https://github.com/libfuse/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2006-02-23 16:26:10 +01:00
name=fuse
2019-01-05 14:28:36 +01:00
version=2.9.9
2016-01-15 14:09:14 +01:00
release=1
2021-12-24 00:55:54 +01:00
source=(https://github.com/libfuse/libfuse/releases/download/$name-$version/$name-$version.tar.gz
fuse2-0007-util-ulockmgr_server.c-conditionally-define-closefro.patch)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2021-12-24 00:55:54 +01:00
patch -Np1 -i $SRC/fuse2-0007-util-ulockmgr_server.c-conditionally-define-closefro.patch
autoreconf -vfi
UDEV_RULES_PATH=/usr/lib/udev/rules.d ./configure \
--prefix=/usr \
--libdir=/usr/lib \
--enable-lib \
--enable-util \
--disable-example
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/{dev,etc}
2006-02-23 16:26:10 +01:00
}