diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:23 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:23 -0400 |
commit | b9564cfe1573e68a743fee6e160c9c3d7d21d6e7 (patch) | |
tree | b9842113cb098aef3a5a64d865865511cf9a4431 /network/bitlbee | |
parent | 0488016b700a43b57c88892313132ec0dffe34de (diff) | |
download | slackbuilds-b9564cfe1573e68a743fee6e160c9c3d7d21d6e7.tar.gz |
network/bitlbee: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/bitlbee')
-rw-r--r-- | network/bitlbee/bitlbee.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/bitlbee/bitlbee.SlackBuild b/network/bitlbee/bitlbee.SlackBuild index be7b740967..e60bc519f2 100644 --- a/network/bitlbee/bitlbee.SlackBuild +++ b/network/bitlbee/bitlbee.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=bitlbee VERSION=${VERSION:-1.2.5} -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 @@ -47,6 +56,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |