summaryrefslogtreecommitdiffstats
path: root/libraries/perl-gtk2
diff options
context:
space:
mode:
author David Somero2010-06-04 07:09:45 +0200
committer David Somero2010-06-04 07:09:45 +0200
commit869d02f7ad8e2e39158edea59a9894778e230ee5 (patch)
tree0290cdaa5938c5acd5379f012b4138b87d50f5b9 /libraries/perl-gtk2
parent3375854dbe614040055478ce10ec74b19d6734ff (diff)
downloadslackbuilds-869d02f7ad8e2e39158edea59a9894778e230ee5.tar.gz
libraries/perl-gtk2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/perl-gtk2')
-rw-r--r--libraries/perl-gtk2/perl-gtk2.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/perl-gtk2/perl-gtk2.SlackBuild b/libraries/perl-gtk2/perl-gtk2.SlackBuild
index 1bfa2dbe45..4ab9cca0b8 100644
--- a/libraries/perl-gtk2/perl-gtk2.SlackBuild
+++ b/libraries/perl-gtk2/perl-gtk2.SlackBuild
@@ -25,10 +25,19 @@
PRGNAM=perl-gtk2
SRCNAM=Gtk2
VERSION=1.161
-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
@@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e