summaryrefslogtreecommitdiffstats
path: root/libraries/mxml
diff options
context:
space:
mode:
author David Somero2010-06-04 07:09:10 +0200
committer David Somero2010-06-04 07:09:10 +0200
commit2ec41e06c4c719a09fe01a547b727725c48032ed (patch)
tree22999f2dca27c1cf756bc927fdce09e7b06f118d /libraries/mxml
parent51c932df820ac0e99e09ddc6abe60683fc65260b (diff)
downloadslackbuilds-2ec41e06c4c719a09fe01a547b727725c48032ed.tar.gz
libraries/mxml: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/mxml')
-rw-r--r--libraries/mxml/mxml.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/mxml/mxml.SlackBuild b/libraries/mxml/mxml.SlackBuild
index bd204ebc52..67a4ae9e57 100644
--- a/libraries/mxml/mxml.SlackBuild
+++ b/libraries/mxml/mxml.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=mxml
VERSION=${VERSION:-2.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
@@ -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