diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:20 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:20 -0400 |
commit | f0cee28f3760622c4f921d0bbdd9ad9ce8cdf1f4 (patch) | |
tree | dd89b26c7a59ff8278381476ec0f4d47769b8ff2 /libraries/perl-Cache-FastMmap | |
parent | 55fc29f962dc9821f5e82c205d4f41427b6c824d (diff) |
libraries/perl-Cache-FastMmap: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/perl-Cache-FastMmap')
-rwxr-xr-x | libraries/perl-Cache-FastMmap/perl-Cache-FastMmap.SlackBuild | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/libraries/perl-Cache-FastMmap/perl-Cache-FastMmap.SlackBuild b/libraries/perl-Cache-FastMmap/perl-Cache-FastMmap.SlackBuild index 548ef494827c..c61439b7973c 100755 --- a/libraries/perl-Cache-FastMmap/perl-Cache-FastMmap.SlackBuild +++ b/libraries/perl-Cache-FastMmap/perl-Cache-FastMmap.SlackBuild @@ -27,14 +27,23 @@ SRCNAM=Cache-FastMmap PRGNAM=perl-Cache-FastMmap VERSION=1.35 -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 OUTPUT=${OUTPUT:-/tmp} -CWD=$(pwd) set -e |