diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:03 -0400 |
commit | b18bb849fa87925825521d0630bf38a5b21440e3 (patch) | |
tree | 9151335de3675c2a4df7419f7f2938b0719d88e2 /system/lbzip2 | |
parent | 89719c2e424c2e58f65a3ae27d1c14968e53b5bf (diff) |
system/lbzip2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/lbzip2')
-rwxr-xr-x | system/lbzip2/lbzip2.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/lbzip2/lbzip2.SlackBuild b/system/lbzip2/lbzip2.SlackBuild index 754b2f77fc09..cb518cf3d064 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 |