summaryrefslogtreecommitdiffstats
path: root/network/kadu
diff options
context:
space:
mode:
author David Somero2010-06-04 07:13:04 +0200
committer David Somero2010-06-04 07:13:04 +0200
commit1c8d71634b8330c01e2aef867885693fd53fe17c (patch)
treea0d5ac31e3be658fa467b553aa85255d8ad92e96 /network/kadu
parent613783e08a12baa94be27b750a1c0f21cdd89844 (diff)
downloadslackbuilds-1c8d71634b8330c01e2aef867885693fd53fe17c.tar.gz
network/kadu: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/kadu')
-rw-r--r--network/kadu/kadu.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/kadu/kadu.SlackBuild b/network/kadu/kadu.SlackBuild
index c4a76531e1..f084e28ba7 100644
--- a/network/kadu/kadu.SlackBuild
+++ b/network/kadu/kadu.SlackBuild
@@ -2,10 +2,19 @@
PRGNAM=kadu
VERSION=${VERSION:-0.6.5.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
@@ -20,6 +29,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e