aboutsummaryrefslogtreecommitdiff
path: root/denyhosts/denyhosts.SlackBuild
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-10-28 17:41:00 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-10-28 17:41:00 +0000
commit6b3e150296ab3d2eec5ee7440afec2cb0851a777 (patch)
treea57ce0714b6d09895d9bfcea37f6f1353a4b2ca8 /denyhosts/denyhosts.SlackBuild
parenta05ae4a1b962a01be3f630e502f12f2e7b88c126 (diff)
downloadslackbuilds-6b3e150296ab3d2eec5ee7440afec2cb0851a777.tar.gz
slackbuilds-6b3e150296ab3d2eec5ee7440afec2cb0851a777.tar.bz2
moving back DenyHosts to denyhosts
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@543 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'denyhosts/denyhosts.SlackBuild')
-rwxr-xr-xdenyhosts/denyhosts.SlackBuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/denyhosts/denyhosts.SlackBuild b/denyhosts/denyhosts.SlackBuild
new file mode 100755
index 00000000..1cc27e94
--- /dev/null
+++ b/denyhosts/denyhosts.SlackBuild
@@ -0,0 +1,32 @@
+#!/bin/bash
+#
+# SlackBuild script to call denyhosts.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="denyhosts"
+VERSION=${VERSION:=2.5}
+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
+
+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