summaryrefslogtreecommitdiffstats
path: root/network/proxychains
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:14:01 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:14:01 -0400
commitbe29dbdd7626d00aa710299c16170179e4cb782a (patch)
treeae1f63d4099fd01b99dc75a8d340f98b5f118ef1 /network/proxychains
parent25e02af83eb3b7e5a93c80435739a3847b9c4803 (diff)
downloadslackbuilds-be29dbdd7626d00aa710299c16170179e4cb782a.tar.gz
slackbuilds-be29dbdd7626d00aa710299c16170179e4cb782a.tar.xz
network/proxychains: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/proxychains')
-rw-r--r--network/proxychains/proxychains.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/proxychains/proxychains.SlackBuild b/network/proxychains/proxychains.SlackBuild
index 34ec2e893d..6902faca7a 100644
--- a/network/proxychains/proxychains.SlackBuild
+++ b/network/proxychains/proxychains.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=proxychains
VERSION=${VERSION:-3.1}
-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
@@ -27,6 +36,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e # Exit on most errors