diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:02 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:02 -0400 |
commit | ce80ee18223b9d359fae20ae8ed6f3b64771fd04 (patch) | |
tree | 81743191f7b29f722914e81b033d19ee34b2ef2f /games/atari++ | |
parent | 4861789803a8326cd314a9597fd4a22a99f70d57 (diff) | |
download | slackbuilds-ce80ee18223b9d359fae20ae8ed6f3b64771fd04.tar.gz |
games/atari++: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/atari++')
-rw-r--r-- | games/atari++/atari++.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/games/atari++/atari++.SlackBuild b/games/atari++/atari++.SlackBuild index 8cba7da25b..499a62b569 100644 --- a/games/atari++/atari++.SlackBuild +++ b/games/atari++/atari++.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=atari++ VERSION=${VERSION:-1.58} -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 @@ -32,6 +41,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |