diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:53 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:53 -0400 |
commit | 507bf13d5e0245edf9d89ce4fea215c89215ed77 (patch) | |
tree | c8ec96840f6e1e7fe5b10f96ec1f4576cce21175 | |
parent | 7a95f63b505b3d1445208ab5a2da426b12690bab (diff) | |
download | slackbuilds-507bf13d5e0245edf9d89ce4fea215c89215ed77.tar.gz |
libraries/perl-xml-namespacesupport: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | libraries/perl-xml-namespacesupport/perl-xml-namespacesupport.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/perl-xml-namespacesupport/perl-xml-namespacesupport.SlackBuild b/libraries/perl-xml-namespacesupport/perl-xml-namespacesupport.SlackBuild index 69153efdd8..b65da73938 100644 --- a/libraries/perl-xml-namespacesupport/perl-xml-namespacesupport.SlackBuild +++ b/libraries/perl-xml-namespacesupport/perl-xml-namespacesupport.SlackBuild @@ -8,10 +8,19 @@ PRGNAM=perl-xml-namespacesupport SRCNAM=XML-NamespaceSupport VERSION=1.09 -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 |