mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 11:51:38 +01:00
74 lines
1.9 KiB
Plaintext
74 lines
1.9 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fuse
|
|
pkgver=2.9.3
|
|
pkgrel=0
|
|
pkgdesc="A library that makes it possible to implement a filesystem in a userspace program."
|
|
url="http://fuse.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL2"
|
|
depends=
|
|
makedepends="pkgconfig libiconv-dev gettext-dev"
|
|
install=
|
|
subpackages="$pkgname-dev"
|
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
|
|
fuse.initd"
|
|
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-static \
|
|
--enable-shared \
|
|
--disable-example \
|
|
--enable-lib \
|
|
--enable-util \
|
|
--bindir=/bin \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -r "$pkgdir"/usr/lib/*.la \
|
|
"$pkgdir"/dev \
|
|
"$pkgdir"/etc/init.d || return 1
|
|
|
|
install -Dm755 "$srcdir"/fuse.initd "$pkgdir"/etc/init.d/fuse
|
|
# create config
|
|
install -d "$pkgdir"/etc
|
|
cat >"$pkgdir"/etc/fuse.conf << _EOF_
|
|
# Set the maximum number of FUSE mounts allowed to non-root users.
|
|
# The default is 1000.
|
|
#
|
|
#mount_max = 1000
|
|
|
|
# Allow non-root users to specify the 'allow_other' or 'allow_root'
|
|
# mount options.
|
|
#
|
|
#user_allow_other
|
|
_EOF_
|
|
|
|
}
|
|
|
|
md5sums="33cae22ca50311446400daf8a6255c6a fuse-2.9.3.tar.gz
|
|
5983726cfabf0830dffbbbf9a3abcddc fuse.initd"
|
|
sha256sums="0beb83eaf2c5e50730fc553406ef124d77bc02c64854631bdfc86bfd6437391c fuse-2.9.3.tar.gz
|
|
22a22c914d2a4f0fb5fc8495f4b7efcd1819efde548c9033ca612c181cd29eda fuse.initd"
|
|
sha512sums="03f43f88694ec7e039ff3579a8e76349b5a5a05872c55901fc1d9ee53dbb6b1e69f6dd0005b620f3b5ead0b14da8eeb31d46b922d10f88f4e3f830aa47e8162c fuse-2.9.3.tar.gz
|
|
3d2765114081c8f6720ed25d7b7da4f6da5fbbb5b35760bb0a760f0bf2482abacabec63c1488d4e8cbe4f78875574607e6e46508dfe22df0869f4d2e1e91e607 fuse.initd"
|