opt/fuse3/Pkgfile

19 lines
472 B
Plaintext
Raw Normal View History

2017-02-20 14:40:15 +01:00
# Description: Interface for userspace filesystems
# URL: https://github.com/libfuse/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: meson ninja
2017-02-20 14:40:15 +01:00
name=fuse3
2019-04-17 11:14:28 +02:00
version=3.5.0
2017-04-12 16:54:02 +02:00
release=1
source=(https://github.com/libfuse/libfuse/releases/download/fuse-$version/fuse-$version.tar.xz)
2017-02-20 14:40:15 +01:00
build() {
cd fuse-$version
2018-08-31 16:30:06 +02:00
meson build --prefix /usr --sysconfdir /etc
2017-11-15 09:50:48 +01:00
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
rm -r $PKG/{dev,etc,lib}
2017-02-20 14:40:15 +01:00
}