Discarded code for copying Changelog in base/acpid Upgraded base/attr to 2.5.1 Replaced CFLAGS with LDFLAGS for static linking in base/coreutils Removed code that stripped static archive in base/curl Removed -L/lib flag in LDFLAGS in base/e2fsprogs and partly fixed make install line Fixed subshell code order in base/file Disabled compile tests in base/fmt base/fuse2 's init script path is now passed to configure to remove any need for post compile path and directory fixes Fixed hardcoded init path in base/fuse3 and removed related unnecessary code Disabled static lib generation in base/gmp Base/gpgme now only builds for predefined languages Rewrote entire build code in base/tree Partly rewrote build code in base/zip
42 lines
922 B
Text
Executable file
42 lines
922 B
Text
Executable file
app=fuse2
|
|
version=2.9.5
|
|
build=2sml
|
|
homepage="https://github.com/libfuse/libfuse"
|
|
download="https://github.com/libfuse/libfuse/releases/download/fuse-$version/fuse-$version.tar.xz"
|
|
desc="Interface to export virtual filesystem in userspace"
|
|
requires="musl"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf fuse-$version
|
|
|
|
tar xf $srcdir/fuse-$version.tar.?z*
|
|
cd fuse-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
INIT_D_PATH="/etc/rc.d" \
|
|
MOUNT_FUSE_PATH="/bin" \
|
|
./configure \
|
|
--prefix="" \
|
|
--sysconfdir=/etc \
|
|
--sbindir=/bin \
|
|
--enable-lib \
|
|
--enable-shared \
|
|
--disable-static
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
rm -rv $pkg/dev
|
|
mv $pkg/etc/rc.d/fuse $pkg/etc/rc.d/rc.fuse2.new
|
|
|
|
cp COPYING* $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
8d24254a26314a3c2f84108cd3aadc357b9ac943edd279f6fcd86c1821238ac01817880cfc994172b50a07bf74ead1e3bb44faf17eee81cca3baf3a6a960e823 fuse-2.9.5.tar.lz
|
|
"
|