diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:17 -0400 |
commit | 45301a6a12df71baa3b9453e4cfdae339f58cc25 (patch) | |
tree | 6cb55cef6145cf4618acae5e6a41d379047183a5 /misc/scim-chewing/scim-chewing.SlackBuild | |
parent | 9a87f16e4091df68c87d051264f662dcdcbdfb49 (diff) | |
download | slackbuilds-45301a6a12df71baa3b9453e4cfdae339f58cc25.tar.gz |
misc/scim-chewing: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc/scim-chewing/scim-chewing.SlackBuild')
-rw-r--r-- | misc/scim-chewing/scim-chewing.SlackBuild | 14 |
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 |