diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:18 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:18 -0400 |
commit | dbce70a532922a435e716681b6fa19d935c3cff2 (patch) | |
tree | 27477f8fec8d58053d134ed98c5a43df65795fae /development/perl-Class-Gomor | |
parent | 0466cfd186105e5c5f9e3278f44c31c7480a80d4 (diff) | |
download | slackbuilds-dbce70a532922a435e716681b6fa19d935c3cff2.tar.gz |
development/perl-Class-Gomor: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/perl-Class-Gomor')
-rw-r--r-- | development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild b/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild index 9cc9135206..ba2d8a50cf 100644 --- a/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild +++ b/development/perl-Class-Gomor/perl-Class-Gomor.SlackBuild @@ -24,13 +24,22 @@ PRGNAM=perl-Class-Gomor VERSION=${VERSION:-1.02} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRC_PRGNAM=Class-Gomor DOCS="LICENSE LICENSE.Artistic README" +# 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 @@ -45,6 +54,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |