From c215f54de814b5fca4c8d3b2dc868865a842be05 Mon Sep 17 00:00:00 2001 From: David Somero Date: Fri, 4 Jun 2010 01:04:57 -0400 Subject: games/warzone2100: Misc automated cleanups. Signed-off-by: David Somero --- games/warzone2100/warzone2100.SlackBuild | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'games/warzone2100') 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 -- cgit v1.2.3