diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:35 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:35 -0400 |
commit | 49c8df5462a9bd7788683f2c48d6e399ed88f3ec (patch) | |
tree | 620e1980c24a8f84f02ec0cd374009be986bf86a /libraries | |
parent | 25331b9d0b6cf0d7136128fad653e6cb5adf0a02 (diff) | |
download | slackbuilds-49c8df5462a9bd7788683f2c48d6e399ed88f3ec.tar.gz |
libraries/perl-Test-Pod: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/perl-Test-Pod/perl-Test-Pod.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/perl-Test-Pod/perl-Test-Pod.SlackBuild b/libraries/perl-Test-Pod/perl-Test-Pod.SlackBuild index 43b2dab9f2..047932382a 100644 --- a/libraries/perl-Test-Pod/perl-Test-Pod.SlackBuild +++ b/libraries/perl-Test-Pod/perl-Test-Pod.SlackBuild @@ -29,10 +29,19 @@ SRCNAM=Test-Pod PRGNAM=perl-Test-Pod VERSION=1.43 -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM |