opt/fuse3/Pkgfile

25 lines
570 B
Plaintext
Raw Normal View History

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
2023-01-16 18:08:49 +01:00
version=3.13.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() {
2020-11-09 15:13:31 +01:00
meson setup build fuse-$version \
--prefix=/usr \
--sysconfdir=/etc \
2022-05-06 13:25:00 +02:00
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
2020-11-09 15:13:31 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2020-10-10 15:52:36 +02:00
rm -r $PKG/{dev,etc,lib}
2017-02-20 14:40:15 +01:00
}