mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
network/noip2: Cleaned up Build.
This commit is contained in:
parent
172d87527a
commit
28e060948c
1 changed files with 13 additions and 3 deletions
|
@ -27,10 +27,20 @@
|
|||
PRGNAM=noip2
|
||||
SRCNAM=noip
|
||||
VERSION=2.1.9
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG=_SBO}
|
||||
CWD=`pwd`
|
||||
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}
|
||||
|
|
Loading…
Reference in a new issue