summaryrefslogtreecommitdiffstats
path: root/desktop/pidgin-guifications
diff options
context:
space:
mode:
author David Somero2010-06-04 07:01:23 +0200
committer David Somero2010-06-04 07:01:23 +0200
commit648f33b68a75e34e4617bbb66ec8c4c597dd3c38 (patch)
treeb606bbd1b569b3724ed42b057f523c374b081dcd /desktop/pidgin-guifications
parentdbe601a076875aa013068ab4f9dc2f1f218a9c32 (diff)
downloadslackbuilds-648f33b68a75e34e4617bbb66ec8c4c597dd3c38.tar.gz
desktop/pidgin-guifications: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/pidgin-guifications')
-rw-r--r--desktop/pidgin-guifications/pidgin-guifications.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/pidgin-guifications/pidgin-guifications.SlackBuild b/desktop/pidgin-guifications/pidgin-guifications.SlackBuild
index c6718bb9cf..cd311d6d7a 100644
--- a/desktop/pidgin-guifications/pidgin-guifications.SlackBuild
+++ b/desktop/pidgin-guifications/pidgin-guifications.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM=pidgin-guifications
VERSION=2.16
-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,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e