summaryrefslogtreecommitdiffstats
path: root/libraries/gobject-introspection
diff options
context:
space:
mode:
author David Somero2010-06-04 07:06:45 +0200
committer David Somero2010-06-04 07:06:45 +0200
commit2376dd0c619277b306d0986114c346cd0e081b08 (patch)
treecdcbc10784f98c0bc34a7e3793bc721f05f79f49 /libraries/gobject-introspection
parent4b564f9e430aaf38b44f97da78d9b45b3ae0b48b (diff)
downloadslackbuilds-2376dd0c619277b306d0986114c346cd0e081b08.tar.gz
libraries/gobject-introspection: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/gobject-introspection')
-rw-r--r--libraries/gobject-introspection/gobject-introspection.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/gobject-introspection/gobject-introspection.SlackBuild b/libraries/gobject-introspection/gobject-introspection.SlackBuild
index ef17408959..6f225cd532 100644
--- a/libraries/gobject-introspection/gobject-introspection.SlackBuild
+++ b/libraries/gobject-introspection/gobject-introspection.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=gobject-introspection
VERSION=${VERSION:-0.6.7}
-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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
DOCS="AUTHORS CONTRIBUTORS COPYING INSTALL NEWS README TODO"