diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-10-28 17:34:44 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-10-28 17:34:44 +0000 |
commit | 5f711c1fb796d7420cb133298ae87cb7965c8f5e (patch) | |
tree | 27b821b9672f49c5188c196760e85d5f6f3f92a8 /denyhosts/DenyHosts.SlackBuild | |
parent | 7d0e55604fbca66c182feca989ee830d4e37b126 (diff) | |
download | slackbuilds-5f711c1fb796d7420cb133298ae87cb7965c8f5e.tar.gz slackbuilds-5f711c1fb796d7420cb133298ae87cb7965c8f5e.tar.bz2 |
moved denyhosts to DenyHosts
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@540 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'denyhosts/DenyHosts.SlackBuild')
-rwxr-xr-x | denyhosts/DenyHosts.SlackBuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/denyhosts/DenyHosts.SlackBuild b/denyhosts/DenyHosts.SlackBuild new file mode 100755 index 00000000..4f0f4e25 --- /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 |