diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:00 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:00 -0400 |
commit | 46fc20fbcc0a1c2670f1cc7beeda886a446852b1 (patch) | |
tree | c5e2d165e543679f52cab86060385bf0c9e517df /games | |
parent | 79947a5311dca0cdc82f56a31ef2e4831b9e1f3d (diff) | |
download | slackbuilds-46fc20fbcc0a1c2670f1cc7beeda886a446852b1.tar.gz |
games/xbill: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/xbill/xbill.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/games/xbill/xbill.SlackBuild b/games/xbill/xbill.SlackBuild index e54fc18196..5a02262852 100644 --- a/games/xbill/xbill.SlackBuild +++ b/games/xbill/xbill.SlackBuild @@ -12,10 +12,19 @@ PRGNAM=xbill VERSION=${VERSION:-2.1} -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -34,6 +43,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |