summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:35 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:35 -0400
commit2b75d674735f4c779ff5396197c5952e69a1bebf (patch)
treededda2d035e1c25177a31fe998f38c73aebf3793
parent745be0e673bb11930f8b1885f3d5813756801f00 (diff)
downloadslackbuilds-2b75d674735f4c779ff5396197c5952e69a1bebf.tar.gz
slackbuilds-2b75d674735f4c779ff5396197c5952e69a1bebf.tar.xz
development/qt-doc: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r--development/qt-doc/qt-doc.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/development/qt-doc/qt-doc.SlackBuild b/development/qt-doc/qt-doc.SlackBuild
index 48859073b2..5c7db2c585 100644
--- a/development/qt-doc/qt-doc.SlackBuild
+++ b/development/qt-doc/qt-doc.SlackBuild
@@ -6,10 +6,19 @@
PKGNAM=qt-doc
VERSION=4.5.1
-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}
OUTPUT=${OUTPUT:-/tmp}
@@ -21,6 +30,9 @@ if [ "$ARCH" = "i486" ] || [ "$ARCH" = "i686" ]; then
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e