diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-10-19 19:30:58 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-10-19 19:30:58 +0000 |
commit | 8faf3506c7ee2a4a2f210d11d41ba91d9bd27eea (patch) | |
tree | 1fa7a248a9ca92009ca296e32b9cb01ea253e377 /wipe | |
parent | fed6a054a71bf6b9db690804f6f7a380434a12ad (diff) | |
download | slackbuilds-8faf3506c7ee2a4a2f210d11d41ba91d9bd27eea.tar.gz slackbuilds-8faf3506c7ee2a4a2f210d11d41ba91d9bd27eea.tar.bz2 |
fixing permissions, part 1
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@454 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'wipe')
-rwxr-xr-x | wipe/wipe.SlackBuild | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/wipe/wipe.SlackBuild b/wipe/wipe.SlackBuild deleted file mode 100755 index 5bafd3a3..00000000 --- a/wipe/wipe.SlackBuild +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -# -# SlackBuild script to call wipe.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="wipe" -VERSION=${VERSION:=2.2.0} -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 |