summaryrefslogtreecommitdiffstats
path: root/network/privoxy
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:14:00 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:14:00 -0400
commit25e02af83eb3b7e5a93c80435739a3847b9c4803 (patch)
treee698c23fcde39f792942f3f244e5bff60f051dc9 /network/privoxy
parenteb7470809493feff5db086daa453164ad630e42c (diff)
downloadslackbuilds-25e02af83eb3b7e5a93c80435739a3847b9c4803.tar.gz
slackbuilds-25e02af83eb3b7e5a93c80435739a3847b9c4803.tar.xz
network/privoxy: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/privoxy')
-rw-r--r--network/privoxy/privoxy.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/privoxy/privoxy.SlackBuild b/network/privoxy/privoxy.SlackBuild
index 6ba6a90c33..034c231c49 100644
--- a/network/privoxy/privoxy.SlackBuild
+++ b/network/privoxy/privoxy.SlackBuild
@@ -28,10 +28,19 @@
PRGNAM=privoxy
VERSION=3.0.12
-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
@@ -46,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
## privoxy user & group *MUST* exist before package creation