diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:57 -0400 |
commit | c215f54de814b5fca4c8d3b2dc868865a842be05 (patch) | |
tree | 7e3dcbd69bc2858c53b9dae02bbabc6028ab2c31 /games/warzone2100 | |
parent | 79ab6115e89c0e59ca7aa0ffdd1a28f648eff1a7 (diff) | |
download | slackbuilds-c215f54de814b5fca4c8d3b2dc868865a842be05.tar.gz |
games/warzone2100: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/warzone2100')
-rw-r--r-- | games/warzone2100/warzone2100.SlackBuild | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/games/warzone2100/warzone2100.SlackBuild b/games/warzone2100/warzone2100.SlackBuild index 6626baed39..4ea112451d 100644 --- a/games/warzone2100/warzone2100.SlackBuild +++ b/games/warzone2100/warzone2100.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=warzone2100 VERSION=${VERSION:-2.3.0} -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 @@ -43,8 +52,8 @@ elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" else - echo "Unrecognized architecture type! Check the script: $0" - exit 1 + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |