network/perl-Net-CIDR: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
c0bf68d1bd
commit
1314443613
|
@ -27,9 +27,18 @@
|
|||
SRCNAM=Net-CIDR
|
||||
PRGNAM=perl-Net-CIDR
|
||||
VERSION=0.13
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue