diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:57 -0400 |
commit | 1e2d19bef0a6a187bdc9aa1152c8027b5c148710 (patch) | |
tree | aa93c4e32272aa70ba0e248d96a2efff6c39cddf /multimedia/schroedinger | |
parent | 0e63ed190384394b2a4901a06729d35568a3f1a8 (diff) |
multimedia/schroedinger: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia/schroedinger')
-rw-r--r-- | multimedia/schroedinger/schroedinger.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/multimedia/schroedinger/schroedinger.SlackBuild b/multimedia/schroedinger/schroedinger.SlackBuild index 6b37346f6cba..9cfbb26f0426 100644 --- a/multimedia/schroedinger/schroedinger.SlackBuild +++ b/multimedia/schroedinger/schroedinger.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=schroedinger VERSION=1.0.9 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -44,6 +53,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 |