summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author David Somero2010-06-04 07:15:02 +0200
committer David Somero2010-06-04 07:15:02 +0200
commit3219f5cbe212a43766d70c6f180a56a925ba2268 (patch)
tree16158e1573ef9897954b841db73966dbf40eb932 /office
parent39b5909629500fd4a8ba87b663e97308e124e1f9 (diff)
downloadslackbuilds-3219f5cbe212a43766d70c6f180a56a925ba2268.tar.gz
office/wink: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/wink/wink.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/office/wink/wink.SlackBuild b/office/wink/wink.SlackBuild
index 30e8d6bc3e..d8d2175b86 100644
--- a/office/wink/wink.SlackBuild
+++ b/office/wink/wink.SlackBuild
@@ -1,10 +1,19 @@
#!/bin/sh
PRGNAM=wink
VERSION=${VERSION:-1.5}
-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
@@ -19,6 +28,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e