diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-23 18:38:28 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-23 23:30:26 -0500 |
commit | c3ff4c4dbaf1d061b1d479ad6d7d85ac16dfb0d5 (patch) | |
tree | 3d51739c23ae0977259d3e6583cc86cd605d4924 | |
parent | 22d1eecf409f69a52ad73576a86a7ac363a525e2 (diff) | |
download | slackbuilds-c3ff4c4dbaf1d061b1d479ad6d7d85ac16dfb0d5.tar.gz |
system/postgis: Miscellaneous cleanups.
-rw-r--r-- | system/postgis/postgis.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/postgis/postgis.SlackBuild b/system/postgis/postgis.SlackBuild index b2e0f8f2af..043e3216c9 100644 --- a/system/postgis/postgis.SlackBuild +++ b/system/postgis/postgis.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=postgis VERSION=${VERSION:-1.4.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) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |