summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:31 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:31 -0400
commit969ffd36dbe81485fb03d7a885f8f3e159960786 (patch)
treeefc3daaa4425441aa87728addde344d27a814898
parent4a7ebc720bfcad5ff320f1913bd22401835c0448 (diff)
downloadslackbuilds-969ffd36dbe81485fb03d7a885f8f3e159960786.tar.gz
slackbuilds-969ffd36dbe81485fb03d7a885f8f3e159960786.tar.xz
network/nikto: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r--network/nikto/nikto.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/nikto/nikto.SlackBuild b/network/nikto/nikto.SlackBuild
index 12a52624aa..e7c4034e28 100644
--- a/network/nikto/nikto.SlackBuild
+++ b/network/nikto/nikto.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=nikto
VERSION=${VERSION:-2.1.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
@@ -41,6 +50,9 @@ elif [ "$ARCH" = "i686" ]; then
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
# Most of the packaging techniques for this strange program comes from Debian