summaryrefslogtreecommitdiffstats
path: root/libraries/gtkhtml
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:06:52 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:06:52 -0400
commitad3f70c137748b6890981d1064b7df8a2098d253 (patch)
tree7aee631fb871dac46619035df0a6adaea56332e5 /libraries/gtkhtml
parent0088fa6e531dd8a1cdae060cac88f8cd8202cc01 (diff)
downloadslackbuilds-ad3f70c137748b6890981d1064b7df8a2098d253.tar.gz
slackbuilds-ad3f70c137748b6890981d1064b7df8a2098d253.tar.xz
libraries/gtkhtml: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/gtkhtml')
-rw-r--r--libraries/gtkhtml/gtkhtml.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/gtkhtml/gtkhtml.SlackBuild b/libraries/gtkhtml/gtkhtml.SlackBuild
index c5d9aac543..cd85543379 100644
--- a/libraries/gtkhtml/gtkhtml.SlackBuild
+++ b/libraries/gtkhtml/gtkhtml.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=gtkhtml
VERSION=3.18.3
-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
set -e