summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author David Somero2010-06-04 07:15:00 +0200
committer David Somero2010-06-04 07:15:00 +0200
commit04a45e975c2b003994e51341dbf12465b6d8c189 (patch)
tree7c4c63b963af1cc6f180868e215d321a00d8f79e /office
parent2bf6f2fcc28527ce6d79347f522ecb820dea74b9 (diff)
downloadslackbuilds-04a45e975c2b003994e51341dbf12465b6d8c189.tar.gz
office/texmaker: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/texmaker/texmaker.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/office/texmaker/texmaker.SlackBuild b/office/texmaker/texmaker.SlackBuild
index 93d317189a..ae67178fe4 100644
--- a/office/texmaker/texmaker.SlackBuild
+++ b/office/texmaker/texmaker.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=texmaker
VERSION=${VERSION:-1.9.9}
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e