summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:03 +0200
committer David Somero2010-06-04 07:16:03 +0200
commitb18bb849fa87925825521d0630bf38a5b21440e3 (patch)
tree9151335de3675c2a4df7419f7f2938b0719d88e2 /system
parent89719c2e424c2e58f65a3ae27d1c14968e53b5bf (diff)
downloadslackbuilds-b18bb849fa87925825521d0630bf38a5b21440e3.tar.gz
system/lbzip2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rwxr-xr-xsystem/lbzip2/lbzip2.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/lbzip2/lbzip2.SlackBuild b/system/lbzip2/lbzip2.SlackBuild
index 754b2f77fc..cb518cf3d0 100755
--- a/system/lbzip2/lbzip2.SlackBuild
+++ b/system/lbzip2/lbzip2.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=lbzip2
VERSION=0.23
-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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -eu