network/mumble-server: Remove NUMJOBS.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2022-02-27 18:27:51 +07:00 committed by Robby Workman
parent fc462f2320
commit cac6007ddd

View file

@ -31,7 +31,6 @@ VERSION=${VERSION:-1.4.230}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
NUMJOBS=${NUMJOBS:-1}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@ -71,8 +70,8 @@ if ! getent passwd $MURMUR_USER; then
exit 1
fi
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -115,7 +114,7 @@ cmake \
-Dice=OFF \
-Dzeroconf=OFF ..
make -j${NUMJOBS}
make
make install DESTDIR=$PKG
)