diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:41 -0400 |
commit | 53ee128a5e57a50a8ef498ba3c2350c652c19a17 (patch) | |
tree | 0c10450e48d942bc7c1b3a028f1524ded86fda09 /libraries/xlt | |
parent | 580eeac6552bc51879d9c7feec21cec1f482d982 (diff) |
libraries/xlt: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/xlt')
-rw-r--r-- | libraries/xlt/xlt.SlackBuild | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/libraries/xlt/xlt.SlackBuild b/libraries/xlt/xlt.SlackBuild index cd701d7ab05c..39ad065b5815 100644 --- a/libraries/xlt/xlt.SlackBuild +++ b/libraries/xlt/xlt.SlackBuild @@ -10,10 +10,20 @@ set -e PRGNAM=xlt BIG_PRGNAM=Xlt VERSION=11.1.11 -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 @@ -28,6 +38,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |