diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:59 -0400 |
commit | 0d6f6f6eb7a1ce54a20db29c4d1b35f9b9dfe266 (patch) | |
tree | b25438fb5d5c74d8be224f486cecf8c5983c614e /libraries/libgnomeprint | |
parent | bd6f214b0ad8afaf39e74dc4c09320427c45c766 (diff) | |
download | slackbuilds-0d6f6f6eb7a1ce54a20db29c4d1b35f9b9dfe266.tar.gz |
libraries/libgnomeprint: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libgnomeprint')
-rw-r--r-- | libraries/libgnomeprint/libgnomeprint.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/libgnomeprint/libgnomeprint.SlackBuild b/libraries/libgnomeprint/libgnomeprint.SlackBuild index 04dfe8605a..ed921d8b8d 100644 --- a/libraries/libgnomeprint/libgnomeprint.SlackBuild +++ b/libraries/libgnomeprint/libgnomeprint.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=libgnomeprint VERSION=2.18.6 -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 |