#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # http://tap-plugins.sourceforge.net # Packagers Gohanz ( gohanz@infinito.it) # http://www.slacky.it # Depends from: # LadSpa...........( http://www.ladspa.org/cmt/overview.html ) CWD=`pwd` if ["$TMP" = ""]; then TMP=/tmp fi PKG=$TMP/package-tap-plugins NAME=tap-plugins VERSION=0.7.0 ARCH=${ARCH:-i686} BUILD=3as if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvzf $CWD/$NAME-$VERSION.tar.gz echo "+-----------------------------------------+" echo "| Starting SlackBuild $NAME-$VERSION |" echo "+-----------------------------------------+" cd $NAME-$VERSION make || exit 1 mkdir -p $PKG/usr/lib/ladspa/rdf cp -a *.so $PKG/usr/lib/ladspa cp -a *.rdf $PKG/usr/lib/ladspa/rdf mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a COPYING CREDITS README $PKG/usr/doc/$NAME-$VERSION cd $CWD cp -a *.SlackBuild slack-desc $PKG/usr/doc/$NAME-$VERSION strip --strip-unneeded $PKG/usr/lib/ladspa/*.so mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG chown -R root:root . ADD="ladspa >= 1.13-i686-1sl" \ requiredbuilder -y -v -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP/$NAME-$VERSION rm -rf $PKG fi