diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:04:39 -0400 |
commit | 45e339643001c7a389ed59741b79a7126a49b948 (patch) | |
tree | 8612f966b00908c80877e059e789debea9e44433 /games/polyglot | |
parent | ff7c87e37fbaa949518bff1279405fc97d02d0b4 (diff) | |
download | slackbuilds-45e339643001c7a389ed59741b79a7126a49b948.tar.gz |
games/polyglot: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/polyglot')
-rw-r--r-- | games/polyglot/polyglot.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/games/polyglot/polyglot.SlackBuild b/games/polyglot/polyglot.SlackBuild index 072c6e84ab..cd71a71452 100644 --- a/games/polyglot/polyglot.SlackBuild +++ b/games/polyglot/polyglot.SlackBuild @@ -8,12 +8,21 @@ PRGNAM=polyglot VERSION=${VERSION:-1.4} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRCNAM=${PRGNAM}_$(echo $VERSION | tr -d \.) ## weird version number +# 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 @@ -28,6 +37,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |