diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:07 -0400 |
commit | 19ea938464ab793f205dd7d395887754c317cba4 (patch) | |
tree | 95531d7c355856aa6dca2fd9f3bb79650026c860 /development/ming | |
parent | 1c4b1d0c06c544722a704709fc691c99c92738aa (diff) | |
download | slackbuilds-19ea938464ab793f205dd7d395887754c317cba4.tar.gz |
development/ming: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/ming')
-rw-r--r-- | development/ming/ming.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/ming/ming.SlackBuild b/development/ming/ming.SlackBuild index 1940551498..92162b4a18 100644 --- a/development/ming/ming.SlackBuild +++ b/development/ming/ming.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=ming VERSION=0.4.3 -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 @@ -45,6 +54,9 @@ elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" PERL_ARCH="x86_64" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |