aboutsummaryrefslogtreecommitdiff
path: root/apps/admin/denyhosts/denyhosts.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'apps/admin/denyhosts/denyhosts.SlackBuild')
-rwxr-xr-xapps/admin/denyhosts/denyhosts.SlackBuild30
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/admin/denyhosts/denyhosts.SlackBuild b/apps/admin/denyhosts/denyhosts.SlackBuild
new file mode 100755
index 00000000..42184a02
--- /dev/null
+++ b/apps/admin/denyhosts/denyhosts.SlackBuild
@@ -0,0 +1,30 @@
+#!/bin/bash
+#
+# SlackBuild script to call denyhosts.build with correct settings
+#
+
+CWD="`pwd`"
+
+if [ -f ~/.slackbuildrc ]; then
+ source ~/.slackbuildrc
+elif [ -f /etc/slackbuildrc ]; then
+ source /etc/slackbuildrc
+fi
+
+# default settings
+PACKAGE="denyhosts"
+VERSION=${VERSION:=2.5}
+ARCH=${ARCH:=i486}
+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