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 | 79947a5311dca0cdc82f56a31ef2e4831b9e1f3d (patch) | |
tree | 2c025b8860a99f6e8c519f37d08560b37c940253 /games/xaos | |
parent | d576c069cfb05b1e988d814ab9a8cde0f95f44ce (diff) | |
download | slackbuilds-79947a5311dca0cdc82f56a31ef2e4831b9e1f3d.tar.gz |
games/xaos: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/xaos')
-rw-r--r-- | games/xaos/xaos.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/games/xaos/xaos.SlackBuild b/games/xaos/xaos.SlackBuild index 88d49046e2..d9375a9ae6 100644 --- a/games/xaos/xaos.SlackBuild +++ b/games/xaos/xaos.SlackBuild @@ -40,10 +40,19 @@ PRGNAM=xaos APPNAM=XaoS VERSION=${VERSION:-3.4} -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 |