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