diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:45 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:06:45 -0400 |
commit | 2376dd0c619277b306d0986114c346cd0e081b08 (patch) | |
tree | cdcbc10784f98c0bc34a7e3793bc721f05f79f49 /libraries/gobject-introspection | |
parent | 4b564f9e430aaf38b44f97da78d9b45b3ae0b48b (diff) |
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.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/gobject-introspection/gobject-introspection.SlackBuild b/libraries/gobject-introspection/gobject-introspection.SlackBuild index ef1740895911..6f225cd532af 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" |