diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:12 -0400 |
commit | d3735a05def753041a6cd753aa90e2794f9d3d66 (patch) | |
tree | 6bdf23222ac8ad600a0d2984738a3f7a3526035c /network/GeoIP | |
parent | 54c6201334856c927f5acc523db211c19ba91b26 (diff) |
network/GeoIP: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/GeoIP')
-rw-r--r-- | network/GeoIP/GeoIP.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/GeoIP/GeoIP.SlackBuild b/network/GeoIP/GeoIP.SlackBuild index ff6caee3081a..3f451d533c55 100644 --- a/network/GeoIP/GeoIP.SlackBuild +++ b/network/GeoIP/GeoIP.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=GeoIP VERSION=1.4.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 @@ -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 |