diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:00 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:00 -0400 |
commit | 01cb3f76acf792131dd40770c77335dfd547437a (patch) | |
tree | 0c8358d8d5e474f3e70fb2928ca5a42f258621ae | |
parent | 0d6f6f6eb7a1ce54a20db29c4d1b35f9b9dfe266 (diff) | |
download | slackbuilds-01cb3f76acf792131dd40770c77335dfd547437a.tar.gz |
libraries/libgnomeprintui: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | libraries/libgnomeprintui/libgnomeprintui.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libgnomeprintui/libgnomeprintui.SlackBuild b/libraries/libgnomeprintui/libgnomeprintui.SlackBuild index 58099d355e..e379734912 100644 --- a/libraries/libgnomeprintui/libgnomeprintui.SlackBuild +++ b/libraries/libgnomeprintui/libgnomeprintui.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=libgnomeprintui VERSION=2.18.4 -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 @@ -44,6 +53,9 @@ elif [ "$ARCH" = "s390" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |