diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:30 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:30 -0400 |
commit | 22a48a54140cf2e3e8454fc230e3dcdd8ba5796a (patch) | |
tree | d3fd5ea7a6cc30e3da9067f6a1e5a325e2e7ae66 /libraries/perl-Image-Info | |
parent | 3ab6bee6f65475199b60e8816a4bcb37868eed50 (diff) |
libraries/perl-Image-Info: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/perl-Image-Info')
-rw-r--r-- | libraries/perl-Image-Info/perl-Image-Info.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/perl-Image-Info/perl-Image-Info.SlackBuild b/libraries/perl-Image-Info/perl-Image-Info.SlackBuild index 695af7587deb..2e45995ee8ce 100644 --- a/libraries/perl-Image-Info/perl-Image-Info.SlackBuild +++ b/libraries/perl-Image-Info/perl-Image-Info.SlackBuild @@ -29,10 +29,19 @@ SRCNAM=Image-Info PRGNAM=perl-Image-Info VERSION=1.30 -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 @@ -51,6 +60,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -fr $TMP/$SRCNAM-$VERSION $PKG |