diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-09-07 16:51:03 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-09-07 16:51:03 +0000 |
commit | 99337486ccd0bbd368ab9b999a7e9e345351affc (patch) | |
tree | 310e5f6a4985ef5596b5f6f97ed2f805bb7bac5e /moin/moin.SlackBuild | |
parent | a70c9267c56d7c5771dc93d6684b420ebb618dcd (diff) | |
download | slackbuilds-99337486ccd0bbd368ab9b999a7e9e345351affc.tar.gz slackbuilds-99337486ccd0bbd368ab9b999a7e9e345351affc.tar.bz2 |
moin small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@155 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'moin/moin.SlackBuild')
-rwxr-xr-x | moin/moin.SlackBuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/moin/moin.SlackBuild b/moin/moin.SlackBuild new file mode 100755 index 00000000..68e19fed --- /dev/null +++ b/moin/moin.SlackBuild @@ -0,0 +1,32 @@ +#!/bin/bash +# +# SlackBuild script to call moin.build with correct settings +# + +CWD="`pwd`" + +if [ -f "/etc/slackbuildrc" ]; then + source /etc/slackbuildrc +fi + +if [ -f "~/.slackbuildrc" ]; then + source ~/.slackbuildrc +fi + +# default settings +PACKAGE="moin" +VERSION=${VERSION:=1.5.4} +ARCH="noarch" +BUILD=${BUILD:=1rha} +SRC_DIR=${SRC:=$CWD} +TMP=${TMP:=/tmp} +REPOS=${REPOS:=$TMP} + +rm -rf $TMP/$PACKAGE +mkdir -p $SRC_DIR/$PACKAGE $TMP/$PACKAGE $REPOS + +slacktrack -b $REPOS -x $TMP,$SRC_DIR,/dev -jefkzp "$PACKAGE-$VERSION-$ARCH-$BUILD.tgz" "./$PACKAGE.build" + +if [ "$CLEANUP" == "yes" ]; then + rm -rf $TMP/$PACKAGE +fi |