diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:52 -0400 |
commit | 7a95f63b505b3d1445208ab5a2da426b12690bab (patch) | |
tree | 5d61f4e56bd3460af1399c79dc90b9d5f8876c4f /libraries | |
parent | 5cb75b5d504b551a3e016eb5bb82e483507aca36 (diff) |
libraries/perl-xml-libxml: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/perl-xml-libxml/perl-xml-libxml.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/perl-xml-libxml/perl-xml-libxml.SlackBuild b/libraries/perl-xml-libxml/perl-xml-libxml.SlackBuild index fd5f45d6f21f..b5752269f2d4 100644 --- a/libraries/perl-xml-libxml/perl-xml-libxml.SlackBuild +++ b/libraries/perl-xml-libxml/perl-xml-libxml.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=perl-xml-libxml SRCNAM=XML-LibXML VERSION=1.64 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 |