diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:44 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:44 -0400 |
commit | 0dca4e87251aa5dc0a145e177077bb463792819c (patch) | |
tree | 6a4253448858af7c02ca3e96fe03e689f39bf1c5 /games | |
parent | 0ae446e803a25e5d9cd905ad83d21ca4ec42d782 (diff) | |
download | slackbuilds-0dca4e87251aa5dc0a145e177077bb463792819c.tar.gz |
games/sdlmess: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/sdlmess/sdlmess.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/games/sdlmess/sdlmess.SlackBuild b/games/sdlmess/sdlmess.SlackBuild index 0f490e582b..d1338aa74b 100644 --- a/games/sdlmess/sdlmess.SlackBuild +++ b/games/sdlmess/sdlmess.SlackBuild @@ -8,10 +8,19 @@ PRGNAM=sdlmess VERSION=${VERSION:-0.134} SRCVER=$( echo $VERSION | sed 's/\.//g' ) -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 |