system/fuse: Initial import
This commit is contained in:
parent
0c0a6ef60f
commit
3dfe960325
|
@ -0,0 +1,17 @@
|
|||
FUSE - Filesystem in Userspace
|
||||
|
||||
FUSE is a simple interface for userspace programs to export
|
||||
a virtual filesystem to the Linux kernel. FUSE also aims to
|
||||
provide a secure method for non privileged users to create
|
||||
and mount their own filesystem implementations.
|
||||
|
||||
NOTE:
|
||||
- To use FUSE with ntfs-3g, it is necessary to configure it as
|
||||
a module (--enable-kernel-module), and each time you install
|
||||
a new kernel(and obviously it's modules), you should rerun this
|
||||
slackbuild to make a package that fits with the modules of
|
||||
your new kernel.
|
||||
|
||||
- It has a "KERNEL" variable to add it in the name of the final
|
||||
package, so you can identify the kernel who was used to build
|
||||
fuse.
|
|
@ -0,0 +1,75 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for fuse
|
||||
|
||||
# Written by core <eroc@linuxmail.org>
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=fuse
|
||||
VERSION=2.6.5
|
||||
KERNEL=${KERNEL:-`uname -r`}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG/usr $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xzvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+rw,go-w .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--enable-kernel-module \
|
||||
--enable-shared=yes \
|
||||
--enable-static=no \
|
||||
--enable-lib \
|
||||
--enable-util
|
||||
|
||||
# ARCH creates a conflict with make, so...
|
||||
ARCHTMP="$ARCH"
|
||||
unset -v ARCH && make
|
||||
make install DESTDIR=$PKG
|
||||
ARCH="$ARCHTMP"
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
# Move the start|stop script of fuse to the right place.
|
||||
mv $PKG/etc/init.d $PKG/etc/rc.d
|
||||
mv $PKG/etc/rc.d/fuse $PKG/etc/rc.d/rc.fuse
|
||||
chmod +x $PKG/etc/rc.d/rc.fuse
|
||||
sed -r -i 's/(SCRIPTNAME=).*/\1\/etc\/rc.d\/rc.fuse/' $PKG/etc/rc.d/rc.fuse || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS ChangeLog COPYING COPYING.LIB FAQ Filesystems \
|
||||
INSTALL NEWS README README.NFS doc/* \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION\_$KERNEL-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="fuse"
|
||||
VERSION="2.6.5"
|
||||
HOMEPAGE="http://fuse.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/fuse/fuse-2.6.5.tar.gz"
|
||||
MD5SUM="66bd30503df55a87b9868835ca5a45bc"
|
||||
MAINTAINER="core"
|
||||
EMAIL="eroc@linuxmail.org"
|
||||
APPROVED="BP{k}"
|
|
@ -0,0 +1,11 @@
|
|||
fuse: FUSE - Filesystem in Userspace
|
||||
fuse:
|
||||
fuse: FUSE is a simple interface for userspace programs to export
|
||||
fuse: a virtual filesystem to the Linux kernel. FUSE also aims to
|
||||
fuse: provide a secure method for non privileged users to create
|
||||
fuse: and mount their own filesystem implementations.
|
||||
fuse:
|
||||
fuse: Homepage: http://fuse.sourceforge.net
|
||||
fuse:
|
||||
fuse:
|
||||
fuse:
|
Loading…
Reference in New Issue