diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:49 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:49 -0400 |
commit | 2820a59dfb34659010a6e05d0e663ad7a98eb92a (patch) | |
tree | 5963d722fcb139ace7bca364c25a8a219a18a9b2 /libraries/gtk-aurora-engine | |
parent | c94dc6e435ad3d453fdaffeda1d8b20228c36d99 (diff) | |
download | slackbuilds-2820a59dfb34659010a6e05d0e663ad7a98eb92a.tar.gz |
libraries/gtk-aurora-engine: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/gtk-aurora-engine')
-rw-r--r-- | libraries/gtk-aurora-engine/gtk-aurora-engine.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/gtk-aurora-engine/gtk-aurora-engine.SlackBuild b/libraries/gtk-aurora-engine/gtk-aurora-engine.SlackBuild index b5ffcabd54..2c24d7d9bc 100644 --- a/libraries/gtk-aurora-engine/gtk-aurora-engine.SlackBuild +++ b/libraries/gtk-aurora-engine/gtk-aurora-engine.SlackBuild @@ -31,10 +31,19 @@ PRGNAM=gtk-aurora-engine VERSION=1.5.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 @@ -54,6 +63,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |