summaryrefslogtreecommitdiffstats
path: root/network/pound
diff options
context:
space:
mode:
author David Somero2010-06-04 07:13:58 +0200
committer David Somero2010-06-04 07:13:58 +0200
commit79bec3b9d234ba1d9570f46b5769154fa308ef98 (patch)
tree178673c16169dea16ed021abd556e8da0562d029 /network/pound
parent51d37ded39297d9b3d63e7d46a4b415f4513258d (diff)
downloadslackbuilds-79bec3b9d234ba1d9570f46b5769154fa308ef98.tar.gz
network/pound: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/pound')
-rw-r--r--network/pound/pound.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/pound/pound.SlackBuild b/network/pound/pound.SlackBuild
index cad6507df4..9cf51cd4cb 100644
--- a/network/pound/pound.SlackBuild
+++ b/network/pound/pound.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pound
VERSION=2.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
@@ -45,6 +54,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e