summaryrefslogtreecommitdiffstats
path: root/system/pbzip2
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:24 +0200
committer David Somero2010-06-04 07:16:24 +0200
commit36d3d53426f76813ab0e8a09436c5dfdf6398f77 (patch)
treea073ed83281093d5c2b66dda0a852d72bff68db1 /system/pbzip2
parentd7e1c4058c00ff5a93868a91874be79329a17122 (diff)
downloadslackbuilds-36d3d53426f76813ab0e8a09436c5dfdf6398f77.tar.gz
system/pbzip2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/pbzip2')
-rwxr-xr-xsystem/pbzip2/pbzip2.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/pbzip2/pbzip2.SlackBuild b/system/pbzip2/pbzip2.SlackBuild
index 67eb47d3dd..e3bded20f4 100755
--- a/system/pbzip2/pbzip2.SlackBuild
+++ b/system/pbzip2/pbzip2.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pbzip2
VERSION=1.1.1
-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