diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:59 -0400 |
commit | a12767355c6fcf732d76e2578a2e97ab10de32e3 (patch) | |
tree | dad9c5ad5b74e207eaa417745b4895fa05fccc4c /games/advancescan/advancescan.SlackBuild | |
parent | 038b6b8f2e7985ff6f11760cd13168b39a60d0d8 (diff) | |
download | slackbuilds-a12767355c6fcf732d76e2578a2e97ab10de32e3.tar.gz |
games/advancescan: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/advancescan/advancescan.SlackBuild')
-rw-r--r-- | games/advancescan/advancescan.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/games/advancescan/advancescan.SlackBuild b/games/advancescan/advancescan.SlackBuild index 88c0c2ce20..6d4c39efb9 100644 --- a/games/advancescan/advancescan.SlackBuild +++ b/games/advancescan/advancescan.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=advancescan VERSION=${VERSION:-1.14} -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 @@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |