diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-12-04 14:57:31 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-12-04 14:57:31 +0000 |
commit | 34985d369fec55aecfeaf5f931f7b1a1fe740a84 (patch) | |
tree | 5ce43159abfcbe74d43f7bf8e1eb712bb887335a | |
parent | 37d561ca2d24d0d1bf516eb4be54ec214172674c (diff) | |
download | slackbuilds-34985d369fec55aecfeaf5f931f7b1a1fe740a84.tar.gz slackbuilds-34985d369fec55aecfeaf5f931f7b1a1fe740a84.tar.bz2 |
perl-module-build: turning to a SlackBuild
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@767 370017ae-e619-0410-ac65-c121f96126d4
-rwxr-xr-x | dev/perl/perl-module-build/perl-module-build.SlackBuild | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/dev/perl/perl-module-build/perl-module-build.SlackBuild b/dev/perl/perl-module-build/perl-module-build.SlackBuild deleted file mode 100755 index 6e21955e..00000000 --- a/dev/perl/perl-module-build/perl-module-build.SlackBuild +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -# -# SlackBuild script to call perl-module-build.build with correct settings -# - -CWD="`pwd`" - -if [ -f ~/.slackbuildrc ]; then - source ~/.slackbuildrc -elif [ -f /etc/slackbuildrc ]; then - source /etc/slackbuildrc -fi - -# default settings -PACKAGE="perl-module-build" -VERSION=${VERSION:=0.2805_01} -ARCH=${ARCH:=i386} -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 |