diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:07:16 -0400 |
commit | 571f90ea4eb847167819acb8bf5b7d6d8be1fe2c (patch) | |
tree | 891f2b7c726b6c21732c6892429a6318c18b3a07 /libraries/jbigkit | |
parent | 0de6cc5da57e665b5c505bd70b21535d2b58f8f9 (diff) | |
download | slackbuilds-571f90ea4eb847167819acb8bf5b7d6d8be1fe2c.tar.gz |
libraries/jbigkit: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/jbigkit')
-rw-r--r-- | libraries/jbigkit/jbigkit.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/jbigkit/jbigkit.SlackBuild b/libraries/jbigkit/jbigkit.SlackBuild index 193dbc1eb0..356781a512 100644 --- a/libraries/jbigkit/jbigkit.SlackBuild +++ b/libraries/jbigkit/jbigkit.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=jbigkit VERSION=2.0 -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 |