diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:16 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:16 -0400 |
commit | e1c380ad8a0174c95fe3f3a9b52f39ac73304738 (patch) | |
tree | e0eaeca5aceeacaba884bfddb36d9204c42d53e7 /network/amap/amap.SlackBuild | |
parent | 13e8f15e94a5abbe05c8f5c3166320e8c2c61b23 (diff) | |
download | slackbuilds-e1c380ad8a0174c95fe3f3a9b52f39ac73304738.tar.gz |
network/amap: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/amap/amap.SlackBuild')
-rw-r--r-- | network/amap/amap.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/amap/amap.SlackBuild b/network/amap/amap.SlackBuild index abc3d8c6d5..d0cc769622 100644 --- a/network/amap/amap.SlackBuild +++ b/network/amap/amap.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=amap VERSION=${VERSION:-5.2} -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |