diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:24 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:24 -0400 |
commit | 36d3d53426f76813ab0e8a09436c5dfdf6398f77 (patch) | |
tree | a073ed83281093d5c2b66dda0a852d72bff68db1 /system/pbzip2 | |
parent | d7e1c4058c00ff5a93868a91874be79329a17122 (diff) | |
download | slackbuilds-36d3d53426f76813ab0e8a09436c5dfdf6398f77.tar.gz |
system/pbzip2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/pbzip2')
-rwxr-xr-x | system/pbzip2/pbzip2.SlackBuild | 11 |
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 |