summaryrefslogtreecommitdiffstats
path: root/games/an
diff options
context:
space:
mode:
author David Somero2010-06-04 07:04:00 +0200
committer David Somero2010-06-04 07:04:00 +0200
commit99ad05e1fb9abfbc8fa7e1832b97a7c7a27d0734 (patch)
treec8eb599d33ab13c9e99b24999e0c7b8079e5d102 /games/an
parenta12767355c6fcf732d76e2578a2e97ab10de32e3 (diff)
downloadslackbuilds-99ad05e1fb9abfbc8fa7e1832b97a7c7a27d0734.tar.gz
games/an: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/an')
-rw-r--r--games/an/an.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/games/an/an.SlackBuild b/games/an/an.SlackBuild
index 9cb48a77dc..c1d4772cba 100644
--- a/games/an/an.SlackBuild
+++ b/games/an/an.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=an
VERSION=${VERSION:-0.95_2}
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e