summaryrefslogtreecommitdiffstats
path: root/libraries/purple-plugin_pack
diff options
context:
space:
mode:
author David Somero2010-06-04 07:09:58 +0200
committer David Somero2010-06-04 07:09:58 +0200
commite0ae59be7126f6e07a059f97f06a60bfe2a80f49 (patch)
treee7ec62cb124021a484d35e255852ce37a0261769 /libraries/purple-plugin_pack
parent4d9a587e7dbb93e03560974d380e8ed620c997b3 (diff)
downloadslackbuilds-e0ae59be7126f6e07a059f97f06a60bfe2a80f49.tar.gz
libraries/purple-plugin_pack: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/purple-plugin_pack')
-rw-r--r--libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild b/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild
index 52eaa4f98a..2d12bfd4a7 100644
--- a/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild
+++ b/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM=purple-plugin_pack
VERSION=2.5.1
-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