summaryrefslogtreecommitdiffstats
path: root/libraries/gtksourceview
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:06:54 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:06:54 -0400
commitbcc7a1e013729a491dab5fadb14b80d30cec5231 (patch)
tree79b8584adc4832699b7d325037ebc64d1853b7d8 /libraries/gtksourceview
parent39fd6c0c9a71bbe84ff7ec0782f8a54bb38bd1d4 (diff)
downloadslackbuilds-bcc7a1e013729a491dab5fadb14b80d30cec5231.tar.gz
slackbuilds-bcc7a1e013729a491dab5fadb14b80d30cec5231.tar.xz
libraries/gtksourceview: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/gtksourceview')
-rw-r--r--libraries/gtksourceview/gtksourceview.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/gtksourceview/gtksourceview.SlackBuild b/libraries/gtksourceview/gtksourceview.SlackBuild
index f0056eeaac..ed78a02885 100644
--- a/libraries/gtksourceview/gtksourceview.SlackBuild
+++ b/libraries/gtksourceview/gtksourceview.SlackBuild
@@ -25,10 +25,19 @@
PRGNAM=gtksourceview
VERSION=2.8.2
-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
@@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e # Exit on most errors