diff options
author | slakmagik <jsun@freeshell.org> | 2010-05-13 00:23:09 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:23:09 +0200 |
commit | 5bc3b272ec05b0b7278c821c59cb69b4c2829475 (patch) | |
tree | e8ba33085e894626c6b89b530122805638a187de /desktop/root-tail/root-tail.SlackBuild | |
parent | f175be0ebbd54562dd5612859f019443c3d63c6b (diff) | |
download | slackbuilds-5bc3b272ec05b0b7278c821c59cb69b4c2829475.tar.gz |
desktop/root-tail: Updated for version 1.2
Diffstat (limited to 'desktop/root-tail/root-tail.SlackBuild')
-rw-r--r-- | desktop/root-tail/root-tail.SlackBuild | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/desktop/root-tail/root-tail.SlackBuild b/desktop/root-tail/root-tail.SlackBuild index 135636936a..38b3bff3df 100644 --- a/desktop/root-tail/root-tail.SlackBuild +++ b/desktop/root-tail/root-tail.SlackBuild @@ -5,7 +5,7 @@ # Released under the WTFPL PRGNAM=root-tail -VERSION=1.2 +VERSION=${VERSION:-1.2} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -17,8 +17,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -29,7 +34,6 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION - chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -44,17 +48,23 @@ make DESTDIR=$PKG install make DESTDIR=$PKG INSTMANFLAGS="-m 0644" install.man ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | + xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l); do ln -s $(readlink $i).gz $i.gz; rm $i; done ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a [CR]* $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -gzip -9 $PKG/usr/man/man1/$PRGNAM.1x mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |