2017-02-20 14:40:15 +01:00
|
|
|
# Description: Interface for userspace filesystems
|
2021-02-15 15:04:29 +01:00
|
|
|
# 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
|
2021-09-14 13:08:56 +02:00
|
|
|
version=3.10.5
|
2017-04-12 16:54:02 +02:00
|
|
|
release=1
|
2017-09-26 11:44:04 +02:00
|
|
|
source=(https://github.com/libfuse/libfuse/releases/download/fuse-$version/fuse-$version.tar.xz)
|
2017-02-20 14:40:15 +01:00
|
|
|
|
|
|
|
build() {
|
2020-11-09 15:13:31 +01:00
|
|
|
meson setup build fuse-$version \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--buildtype=release
|
2017-09-26 11:44:04 +02:00
|
|
|
|
2020-11-09 15:13:31 +01:00
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2017-09-26 11:44:04 +02:00
|
|
|
|
2020-10-10 15:52:36 +02:00
|
|
|
rm -r $PKG/{dev,etc,lib}
|
2017-02-20 14:40:15 +01:00
|
|
|
}
|