#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # http://freepops.sf.net/ # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-freepops NAME=freepops VERSION=0.2.6 ARCH=${ARCH:-i686} BUILD=1sl rm -rf $PKG mkdir -p $PKG cd $TMP tar xzvf $CWD/$NAME-$VERSION.tar.gz cd $NAME-$VERSION find . \( -perm 777 -o -perm 775 -o -perm 711 \) -exec chmod 755 {} \; find . \( -perm 700 -o -perm 555 -o -perm 511 \) -exec chmod 755 {} \; find . \( -perm 666 -o -perm 664 -o -perm 600 \) -exec chmod 644 {} \; find . \( -perm 444 -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; chown -R root:root . ./configure.sh linux-slack make all make install DESTDIR=$PKG mkdir -p $PKG/etc/rc.d mkdir -p $PKG/etc/freepops cp -a buildfactory/slackware/rc.freepops $PKG/etc/rc.d cp -a buildfactory/slackware/freepops.conf $PKG/etc/freepops/freepops.conf.new chmod 755 $PKG/etc/rc.d/rc.freepops mv $PKG/usr/share/man $PKG/usr/man gzip -9 $PKG/usr/man/*/* mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS COPYING ChangeLog INSTALL README* TODO doc/*.txt $PKG/usr/doc/$NAME-$VERSION rm -rf $PKG/usr/share/doc 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/nul mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi