diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:42 -0400 |
commit | 4cafcbdcdb848e9b9b7d232a9d7aac82814de6a8 (patch) | |
tree | 2514d967d20b625f70c2774613c59779dc6dddb5 /network/ettercap-NG/ettercap-NG.SlackBuild | |
parent | 73c07a19f4672e1987d7609791b32145caa4b9b7 (diff) | |
download | slackbuilds-4cafcbdcdb848e9b9b7d232a9d7aac82814de6a8.tar.gz |
network/ettercap-NG: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/ettercap-NG/ettercap-NG.SlackBuild')
-rw-r--r-- | network/ettercap-NG/ettercap-NG.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/ettercap-NG/ettercap-NG.SlackBuild b/network/ettercap-NG/ettercap-NG.SlackBuild index ba10f36881..dbdead289e 100644 --- a/network/ettercap-NG/ettercap-NG.SlackBuild +++ b/network/ettercap-NG/ettercap-NG.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=ettercap-NG VERSION=${VERSION:-0.7.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 @@ -42,6 +51,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. |