aboutsummaryrefslogtreecommitdiff
path: root/nicotine/nicotine.SlackBuild
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-09-07 16:47:46 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-09-07 16:47:46 +0000
commit711a24f9dabbe8952c3e0fb73dbd0de7950992e4 (patch)
tree310e5f6a4985ef5596b5f6f97ed2f805bb7bac5e /nicotine/nicotine.SlackBuild
parent84c0e027062b35e5fce29a131a9b558615753d04 (diff)
downloadslackbuilds-711a24f9dabbe8952c3e0fb73dbd0de7950992e4.tar.gz
slackbuilds-711a24f9dabbe8952c3e0fb73dbd0de7950992e4.tar.bz2
nicotine small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@153 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'nicotine/nicotine.SlackBuild')
-rwxr-xr-xnicotine/nicotine.SlackBuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/nicotine/nicotine.SlackBuild b/nicotine/nicotine.SlackBuild
new file mode 100755
index 00000000..40bbd72f
--- /dev/null
+++ b/nicotine/nicotine.SlackBuild
@@ -0,0 +1,32 @@
+#!/bin/bash
+#
+# SlackBuild script to call nicotine.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="nicotine"
+VERSION=${VERSION:=1.2.4.1}
+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