diff options
author | slakmagik <jsun@freeshell.org> | 2010-05-11 20:00:10 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 20:00:10 +0200 |
commit | 2b106d5264449b2720019c018a965a2649b28dfe (patch) | |
tree | 3fa1cfc114f83162cfed94ad5f996a0d5d275600 /desktop/root-tail/root-tail.SlackBuild | |
parent | e19d85c5dff98e5bf9de3205f267ed8272f77678 (diff) |
desktop/root-tail: Added to 12.0 repository
Diffstat (limited to 'desktop/root-tail/root-tail.SlackBuild')
-rw-r--r-- | desktop/root-tail/root-tail.SlackBuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/desktop/root-tail/root-tail.SlackBuild b/desktop/root-tail/root-tail.SlackBuild new file mode 100644 index 000000000000..135636936aa2 --- /dev/null +++ b/desktop/root-tail/root-tail.SlackBuild @@ -0,0 +1,60 @@ +#!/bin/sh + +# Slackware build script for root-tail +# Written by slakmagik <jsun@freeshell.org> +# Released under the WTFPL + +PRGNAM=root-tail +VERSION=1.2 +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 + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +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 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \ + -o -perm 400 \) -exec chmod 644 {} \; + +xmkmf -a +make CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" +make DESTDIR=$PKG install +# the makefile wants the man pages mode to be 444 +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 +) + +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 |