#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://www.hellanzb.com/trac # Packager Andrea Sciucca ( gohanz at infinito.it) # http://www.slacky.it # # Required par2cmdline, pycrypto, pyopenssl, pyserial, rarlinux, twisted, zope.interface # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=hellanzb PKG=$TMP/package/$NAME VERSION=0.13 ARCH=${ARCH:-x86} BUILD=1as SOURCE=http://www.hellanzb.com/distfiles/$NAME-$VERSION.tar.gz if [ ! -e $NAME-$VERSION.tar.gz ]; then wget -c $SOURCE fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xzvf $CWD/$NAME-$VERSION.tar.gz echo -e "\E[0;32m+---------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild HellaNZB |\E[0;0m" echo -e "\E[0;32m+---------------------------+\E[0;0m" cd $NAME-$VERSION # Patch the source to fix search of hellanzb.conf file path patch -p1 < $CWD/hellanzb-0.13-Fix_conf_file_search_path.patch find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; chown -R root:root . python setup.py build python setup.py install --prefix=$PKG/usr # Installing a sample conf file under /etc directory mkdir -p $PKG/etc mv $PKG/usr/etc/hellanzb.conf.sample $PKG/etc/hellanzb.conf.new rm -r $PKG/usr/etc # Create the init Slackware script for HellaNZB. mkdir -p $PKG/etc/rc.d install -m 644 $CWD/rc.hellanzb.new $PKG/etc/rc.d mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a CHANGELOG CREDITS LICENSE README $PKG/usr/doc/$NAME-$VERSION rm -r $PKG/usr/share mkdir -p $PKG/install cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild cd $PKG ADD=$(ls /var/log/packages/ | sed -ne 's/\(par2cmdline\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2,/p' \ -e 's/\(pycrypto\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2,/p' \ -e 's/\(pyopenssl\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2,/p' \ -e 's/\(pyserial\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2,/p' \ -e 's/\(rarlinux\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2,/p' \ -e 's/\(twisted\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2,/p' \ -e 's/\(zope.interface\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2/p') \ requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi