summaryrefslogtreecommitdiffstats
path: root/games/gl-117
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:04:19 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:04:19 -0400
commitf00dd77c1e245466efb56aa4b8aec48ba80bc183 (patch)
tree483af0d126efccf61fa82c415ccefd445e4e4f72 /games/gl-117
parent0d336b61524ca139fe0854b226a146f1fbe581bf (diff)
downloadslackbuilds-f00dd77c1e245466efb56aa4b8aec48ba80bc183.tar.gz
slackbuilds-f00dd77c1e245466efb56aa4b8aec48ba80bc183.tar.xz
games/gl-117: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/gl-117')
-rwxr-xr-xgames/gl-117/gl-117.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/games/gl-117/gl-117.SlackBuild b/games/gl-117/gl-117.SlackBuild
index 67866efadc..8d9f948dff 100755
--- a/games/gl-117/gl-117.SlackBuild
+++ b/games/gl-117/gl-117.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=gl-117
VERSION=${VERSION:-1.3.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 # Exit on most errors