diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:02 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:02 -0400 |
commit | 43a0d8636042eb6a32a1b48ef94510d33a39cc51 (patch) | |
tree | c174d5c0bed331de29a32124ee176698c96aa680 /network/irssi_otr | |
parent | 663eabac766625ef6c6c804330896a4a2be9bc3c (diff) | |
download | slackbuilds-43a0d8636042eb6a32a1b48ef94510d33a39cc51.tar.gz |
network/irssi_otr: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/irssi_otr')
-rw-r--r-- | network/irssi_otr/irssi_otr.SlackBuild | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/network/irssi_otr/irssi_otr.SlackBuild b/network/irssi_otr/irssi_otr.SlackBuild index 37b0a7db5f..14c7103fb3 100644 --- a/network/irssi_otr/irssi_otr.SlackBuild +++ b/network/irssi_otr/irssi_otr.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=irssi_otr VERSION=${VERSION:-0.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 @@ -23,7 +32,10 @@ elif [ "$ARCH" = "i686" ]; then LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX=64 + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi TARNAM=$( echo $PRGNAM | sed 's/_/-/g' ) |