mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
system/zfs-fuse: Updated for version 0.6.9.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
9ecc6dd17b
commit
919be1ed22
2 changed files with 10 additions and 12 deletions
|
@ -4,16 +4,14 @@
|
|||
# Steven King revision date 2010/01/17
|
||||
|
||||
PRGNAM=zfs-fuse
|
||||
VERSION=0.6.0
|
||||
VERSION=0.6.9
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -39,10 +37,16 @@ cd src
|
|||
scons install install_dir=$PKG/usr/sbin
|
||||
cd ..
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
# Install init script
|
||||
mkdir -p $PKG/etc/rc.d
|
||||
cat $CWD/rc.zfs-fuse > $PKG/etc/rc.d/rc.zfs-fuse.new
|
||||
|
||||
mkdir -p $PKG/usr/man/man8
|
||||
cp doc/*.8.gz $PKG/usr/man/man8
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
BUGS HACKING LICENSE TESTING CHANGES INSTALL README* STATUS TODO \
|
||||
|
@ -50,15 +54,9 @@ cp -a \
|
|||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/usr/man/man8
|
||||
cp doc/*.8.gz $PKG/usr/man/man8
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="zfs-fuse"
|
||||
VERSION="0.6.0"
|
||||
VERSION="0.6.9"
|
||||
HOMEPAGE="http://zfs-fuse.net"
|
||||
DOWNLOAD="http://zfs-fuse.net/releases/0.6.0/zfs-fuse-0.6.0.tar.bz2"
|
||||
MD5SUM="c0e1d0d3406f7a1ac203708e5ecdc6dd"
|
||||
DOWNLOAD="http://zfs-fuse.net/releases/0.6.9/zfs-fuse-0.6.9.tar.bz2"
|
||||
MD5SUM="49d77188138ad63cdba70396b8ef5ad4"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Steven King"
|
||||
|
|
Loading…
Reference in a new issue