diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:58 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:58 -0400 |
commit | 7623be54efc3400f43b3458a148f2c771a17a3ad (patch) | |
tree | 96965ee3725a3c8a2bb616a1039849b60f513e34 /network/iftop/iftop.SlackBuild | |
parent | 467f6724a987daac48b043c5c3e93a19d97abdb3 (diff) |
network/iftop: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/iftop/iftop.SlackBuild')
-rw-r--r-- | network/iftop/iftop.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/iftop/iftop.SlackBuild b/network/iftop/iftop.SlackBuild index f3898a6698bc..9cc035865e80 100644 --- a/network/iftop/iftop.SlackBuild +++ b/network/iftop/iftop.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=iftop VERSION=${VERSION:-0.17} -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 @@ -26,6 +35,9 @@ if [ "$ARCH" = "i486" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |