summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author David Somero2010-06-04 07:14:55 +0200
committer David Somero2010-06-04 07:14:55 +0200
commite522771fc6bf73e64dd58b513851f2d77ef6ded0 (patch)
tree1d283f4b2b13b30f765e2ec99ca4923d57de5848 /office
parent677477232a8d20d7d81c0d1e480f7ee56d49f906 (diff)
downloadslackbuilds-e522771fc6bf73e64dd58b513851f2d77ef6ded0.tar.gz
office/pdfedit: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/pdfedit/pdfedit.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/office/pdfedit/pdfedit.SlackBuild b/office/pdfedit/pdfedit.SlackBuild
index afedf31c94..1e45a9ec7b 100644
--- a/office/pdfedit/pdfedit.SlackBuild
+++ b/office/pdfedit/pdfedit.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM=pdfedit
VERSION=0.4.3
-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
@@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e