opt/fuse3/Pkgfile

24 lines
538 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
2017-02-20 14:40:15 +01:00
name=fuse3
2023-10-11 09:03:58 +02:00
version=3.16.2
2017-04-12 16:54:02 +02:00
release=1
2023-02-04 13:13:15 +01:00
source=(https://github.com/libfuse/libfuse/archive/refs/tags/fuse-$version.tar.gz)
2017-02-20 14:40:15 +01:00
build() {
2023-02-04 13:13:15 +01:00
meson setup build libfuse-fuse-$version \
2020-11-09 15:13:31 +01:00
--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
}