prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
41 lines
920 B
Text
Executable file
41 lines
920 B
Text
Executable file
app=fuse
|
|
version=2.9.5
|
|
build=1sml
|
|
homepage='https://github.com/libfuse/libfuse'
|
|
download='https://github.com/libfuse/libfuse/releases/download/fuse-2.9.5/fuse-2.9.5.tar.xz'
|
|
desc="Interface to export virtual filesystem in userspace"
|
|
requires="musl"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
./configure \
|
|
--prefix="" \
|
|
--sysconfdir=/etc \
|
|
--sbindir=/bin \
|
|
--enable-lib \
|
|
--enable-shared \
|
|
--disable-static
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
mv $pkg/sbin/* $pkg/bin/ ; rmdir $pkg/sbin
|
|
|
|
mkdir -p $pkg/etc/rc.d
|
|
mv $pkg/etc/init.d/fuse $pkg/etc/rc.d/rc.fuse.new
|
|
rm -rf $pkg/etc/init.d
|
|
|
|
cp COPYING* $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
8d24254a26314a3c2f84108cd3aadc357b9ac943edd279f6fcd86c1821238ac01817880cfc994172b50a07bf74ead1e3bb44faf17eee81cca3baf3a6a960e823 fuse-2.9.5.tar.lz
|
|
"
|