blob: ca2bd0932b30a6ee768a47f1dc7550edd72a9662 (
plain) (
tree)
|
|
#!/bin/sh
# Set initial variables:
CWD=`pwd`
if [ "$TMP" = "" ]; then
TMP=/tmp
fi
export VERSION=2.07
export PKGEXT=${PKGEXT:-txz}
if [ ! -d $TMP ]; then
mkdir -p $TMP # location to build the source
fi
cd $TMP
rm -rf slacktrack
tar xvf $CWD/slacktrack-$VERSION-source.tar.gz
cd slacktrack
# Start the "real" SlackBuild:
./slacktrack.SlackBuild
|