aboutsummaryrefslogtreecommitdiff
path: root/nicotine/nicotine.SlackBuild
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-09-07 16:46:06 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-09-07 16:46:06 +0000
commitea2e0346522536199bbe221835449b1b302bcb14 (patch)
treea644d6147a89ebec480b57b17294e984f4ea2deb /nicotine/nicotine.SlackBuild
parentb7ce7648d12404c35d17059fd5e95d9ea6e41d79 (diff)
downloadslackbuilds-ea2e0346522536199bbe221835449b1b302bcb14.tar.gz
slackbuilds-ea2e0346522536199bbe221835449b1b302bcb14.tar.bz2
added nicotine
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@151 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'nicotine/nicotine.SlackBuild')
-rw-r--r--nicotine/nicotine.SlackBuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/nicotine/nicotine.SlackBuild b/nicotine/nicotine.SlackBuild
new file mode 100644
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