summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:17 +0200
committer David Somero2010-06-04 07:11:17 +0200
commit45301a6a12df71baa3b9453e4cfdae339f58cc25 (patch)
tree6cb55cef6145cf4618acae5e6a41d379047183a5 /misc
parent9a87f16e4091df68c87d051264f662dcdcbdfb49 (diff)
downloadslackbuilds-45301a6a12df71baa3b9453e4cfdae339f58cc25.tar.gz
misc/scim-chewing: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/scim-chewing/scim-chewing.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/misc/scim-chewing/scim-chewing.SlackBuild b/misc/scim-chewing/scim-chewing.SlackBuild
index 92233660e0..6bf26340a0 100644
--- a/misc/scim-chewing/scim-chewing.SlackBuild
+++ b/misc/scim-chewing/scim-chewing.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=scim-chewing
VERSION=${VERSION:-0.3.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
# Exit on most errors