summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:10:53 +0200
committer David Somero2010-06-04 07:10:53 +0200
commit1290740da1655162b02471e055d8c2c554699161 (patch)
tree603b6cffac1d96d5cb3499bf55646d43e65581c6 /misc
parent885ab85de87a5f56ecbacdb552f7eb8d7d93ed99 (diff)
downloadslackbuilds-1290740da1655162b02471e055d8c2c554699161.tar.gz
misc/fcitx: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/fcitx/fcitx.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/misc/fcitx/fcitx.SlackBuild b/misc/fcitx/fcitx.SlackBuild
index 365ec8035d..edf856b515 100644
--- a/misc/fcitx/fcitx.SlackBuild
+++ b/misc/fcitx/fcitx.SlackBuild
@@ -7,10 +7,19 @@
PRGNAM=fcitx
VERSION=${VERSION:-3.6}
SRCVER=${PKGVER:-3.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
@@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e