diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:08 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:08 -0400 |
commit | e77932d563feff54db634d755a1dbc434718bd16 (patch) | |
tree | e7d26804caf2b80da6052fca1c68bf3e926979b4 /games/circuslinux | |
parent | 8c98c70908d1e392b84d0061086588bead22bdd9 (diff) |
games/circuslinux: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/circuslinux')
-rw-r--r-- | games/circuslinux/circuslinux.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/games/circuslinux/circuslinux.SlackBuild b/games/circuslinux/circuslinux.SlackBuild index 1bb0a40b2ca0..35bd403bb7f0 100644 --- a/games/circuslinux/circuslinux.SlackBuild +++ b/games/circuslinux/circuslinux.SlackBuild @@ -8,10 +8,19 @@ PRGNAM=circuslinux VERSION=${VERSION:-1.0.3} -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 |