diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:53 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:53 -0400 |
commit | f259c2be6cc7d6b632e4de17cb4a3db945118d6c (patch) | |
tree | e42e29bf0bbe120a77ea34e5110ae7726bd45e19 | |
parent | 28aff868960e87d150a017335abd4cd502a5643c (diff) | |
download | slackbuilds-f259c2be6cc7d6b632e4de17cb4a3db945118d6c.tar.gz |
network/perl-Socket6: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | network/perl-Socket6/perl-Socket6.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/perl-Socket6/perl-Socket6.SlackBuild b/network/perl-Socket6/perl-Socket6.SlackBuild index 3d8694c789..ceb6388bdd 100644 --- a/network/perl-Socket6/perl-Socket6.SlackBuild +++ b/network/perl-Socket6/perl-Socket6.SlackBuild @@ -24,13 +24,22 @@ PRGNAM=perl-Socket6 VERSION=${VERSION:-0.23} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} SRC_PRGNAM=Socket6 DOCS="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 |