diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:36 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:36 -0400 |
commit | 7e331cd135f82af7b060ff8855ae2d43ff207057 (patch) | |
tree | e286f6086b089e19b0c678ed41bdece3e6615840 /office/antiword | |
parent | 5170c766b0f932ce39b59cfc0ac8d05b2d198e7e (diff) |
office/antiword: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office/antiword')
-rw-r--r-- | office/antiword/antiword.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/office/antiword/antiword.SlackBuild b/office/antiword/antiword.SlackBuild index 81fee703ff33..0733d899862c 100644 --- a/office/antiword/antiword.SlackBuild +++ b/office/antiword/antiword.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=antiword VERSION=0.37 -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 @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |