diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:30 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:30 -0400 |
commit | 9cefc4d930c651347e2ba334138e4d70ba77302d (patch) | |
tree | c79d8463e829ff0e9985fcf143b3f9665d044652 /games/maelstrom | |
parent | 8f8ee05844b1ad801d9b3917f29afa2e32813ffc (diff) | |
download | slackbuilds-9cefc4d930c651347e2ba334138e4d70ba77302d.tar.gz |
games/maelstrom: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/maelstrom')
-rw-r--r-- | games/maelstrom/maelstrom.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/games/maelstrom/maelstrom.SlackBuild b/games/maelstrom/maelstrom.SlackBuild index 22defd6e6f..cd31964dfa 100644 --- a/games/maelstrom/maelstrom.SlackBuild +++ b/games/maelstrom/maelstrom.SlackBuild @@ -12,10 +12,19 @@ PRGNAM=maelstrom SRCNAM=Maelstrom VERSION=${VERSION:-3.0.6} -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 @@ -30,6 +39,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |