diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:43 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:43 -0400 |
commit | 240449844f8f0242eeefa2461056d5265ec4699c (patch) | |
tree | 2d02a879fbdb8253b421da4314a168f80987c4fb /libraries/perl-extutils-pkgconfig | |
parent | 6acd9482f97b70b786b7f86a4388bbf22dfd8685 (diff) | |
download | slackbuilds-240449844f8f0242eeefa2461056d5265ec4699c.tar.gz slackbuilds-240449844f8f0242eeefa2461056d5265ec4699c.tar.xz |
libraries/perl-extutils-pkgconfig: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/perl-extutils-pkgconfig')
-rw-r--r-- | libraries/perl-extutils-pkgconfig/perl-extutils-pkgconfig.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/perl-extutils-pkgconfig/perl-extutils-pkgconfig.SlackBuild b/libraries/perl-extutils-pkgconfig/perl-extutils-pkgconfig.SlackBuild index 43f7dc8557..44c4795069 100644 --- a/libraries/perl-extutils-pkgconfig/perl-extutils-pkgconfig.SlackBuild +++ b/libraries/perl-extutils-pkgconfig/perl-extutils-pkgconfig.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=perl-extutils-pkgconfig SRCNAM=ExtUtils-PkgConfig VERSION=1.08 -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 |