diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:46 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:46 -0400 |
commit | ba174c82a3ab11f41d9be434dc3e72b87de62170 (patch) | |
tree | 3313926310adf8ebdb8f0fc9713d6600c139d579 /libraries/perl-html-parser | |
parent | 869d02f7ad8e2e39158edea59a9894778e230ee5 (diff) | |
download | slackbuilds-ba174c82a3ab11f41d9be434dc3e72b87de62170.tar.gz |
libraries/perl-html-parser: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/perl-html-parser')
-rw-r--r-- | libraries/perl-html-parser/perl-html-parser.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/perl-html-parser/perl-html-parser.SlackBuild b/libraries/perl-html-parser/perl-html-parser.SlackBuild index 09105ebdd1..a30d815db4 100644 --- a/libraries/perl-html-parser/perl-html-parser.SlackBuild +++ b/libraries/perl-html-parser/perl-html-parser.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=perl-html-parser VERSION=${VERSION:-3.64} -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 |