diff options
Diffstat (limited to 'games/OpenRA/OpenRA.SlackBuild')
-rw-r--r-- | games/OpenRA/OpenRA.SlackBuild | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/games/OpenRA/OpenRA.SlackBuild b/games/OpenRA/OpenRA.SlackBuild index 060cdd3e65c1..139b2188641d 100644 --- a/games/OpenRA/OpenRA.SlackBuild +++ b/games/OpenRA/OpenRA.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for OpenRA -# Copyright 2017 Vasily Sora USA +# Copyright 2017,2022 Vasily Sora USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=OpenRA -VERSION=${VERSION:-20190314} +VERSION=${VERSION:-20210321} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -49,6 +49,10 @@ fi TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} +HOME=$TMP/$PRGNAM-release-$VERSION-source +DOTNET_CLI_TELEMETRY_OPTOUT=1 +export HOME DOTNET_CLI_TELEMETRY_OPTOUT + if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" @@ -71,15 +75,15 @@ rm -rf $TMP/$PRGNAM-release-$VERSION-source mkdir -p $TMP $PKG $OUTPUT $TMP/$PRGNAM-release-$VERSION-source cd $TMP/$PRGNAM-release-$VERSION-source tar xvf $CWD/$PRGNAM-release-$VERSION-source.tar.bz2 -cp $CWD/fetch-thirdparty-deps.sh.new thirdparty/fetch-thirdparty-deps.sh -cp $CWD/download.tar.gz thirdparty -mkdir thirdparty/download/ -cp $CWD/GeoLite2-Country.mmdb.gz thirdparty/download/ -rm thirdparty/fetch-geoip-db.sh -touch thirdparty/fetch-geoip-db.sh -echo "#!/bin/sh" >> thirdparty/fetch-geoip-db.sh -echo 'echo "success"' >> thirdparty/fetch-geoip-db.sh -chmod +x thirdparty/fetch-geoip-db.sh +tar -xzvf $CWD/openra-deps.tar.gz +cp $CWD/IP2LOCATION-LITE-DB1.IPV6.BIN.ZIP . +rm fetch-geoip.sh +touch fetch-geoip.sh +echo "#!/bin/sh" >> fetch-geoip.sh +echo 'echo "success"' >> fetch-geoip.sh +chmod +x fetch-geoip.sh + +sed -i 's/msbuild/dotnet\ msbuild/g' ./Makefile ./packaging/functions.sh chown -R root:root . find -L . \ @@ -88,10 +92,10 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -make dependencies -make all +unshare -n make all TARGETPLATFORM=unix-generic RUNTIME=mono MSBUILD='dotnet msbuild -verbosity:m -nologo' make prefix=/usr mandir=/usr/man bindir=/usr/games libdir=/usr/lib${LIBDIRSUFFIX} install DESTDIR=$PKG make prefix=/usr mandir=/usr/man bindir=/usr/games libdir=/usr/lib${LIBDIRSUFFIX} install-linux-shortcuts DESTDIR=$PKG +make prefix=/usr mandir=/usr/man bindir=/usr/games libdir=/usr/lib${LIBDIRSUFFIX} install-linux-appdata DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |