diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:37 -0400 |
commit | 357b90713cf90b189a82d3618e864f03dfd4298f (patch) | |
tree | be8c1ce4e8f65e2e54db2382740f5f30c4c640ec /libraries/wxsvg | |
parent | d6d1658960a0a786223d3f72a2780f8decb82ea2 (diff) | |
download | slackbuilds-357b90713cf90b189a82d3618e864f03dfd4298f.tar.gz |
libraries/wxsvg: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/wxsvg')
-rw-r--r-- | libraries/wxsvg/wxsvg.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/wxsvg/wxsvg.SlackBuild b/libraries/wxsvg/wxsvg.SlackBuild index c8826abd1a..91031c0b37 100644 --- a/libraries/wxsvg/wxsvg.SlackBuild +++ b/libraries/wxsvg/wxsvg.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=wxsvg VERSION=${VERSION:-1.0.2_1} -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 @@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |