diff options
Diffstat (limited to 'system/statifier/statifier.SlackBuild')
-rw-r--r-- | system/statifier/statifier.SlackBuild | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/system/statifier/statifier.SlackBuild b/system/statifier/statifier.SlackBuild new file mode 100644 index 000000000000..60655314efbf --- /dev/null +++ b/system/statifier/statifier.SlackBuild @@ -0,0 +1,79 @@ +#!/bin/sh + +# Slackware build script for statifier + +# Written by Niels Horn <niels.horn@gmail.com> +# revision date: 2009/12/26 + +PRGNAM=statifier +VERSION=${VERSION:-1.6.15} +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 + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + LIBDIRSUFFIX="64" +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 {} \; + +# We need to patch config.x86_64 because Slackware64 is not multi-lib and we +# only have the 32-bits libraries +patch -p1 < $CWD/64pure.patch + +# "usr/lib/" is hardcoded in the Makefile... +sed -i "s,usr/lib/,usr/lib${LIBDIRSUFFIX}/," src/Makefile +# And in the startup script... +sed -i "s,usr/lib/,usr/lib${LIBDIRSUFFIX}/," src/statifier + +# The "configure" script is run by "make" and we really should not mess with +# the CFLAGS & options +# Make *needs* to be run with "-j1" or strange things may happen... +MAKEFLAGS="" make -j1 +make install DESTDIR=$PKG + +( 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 || true +) + +( 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 \ + AUTHORS ChangeLog FAQ INSTALL LICENSE NEWS README RELEASE THANKS \ + TODO VERSION 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-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |