From 409b173e2511fe892fec141b21887a6c7a52400f Mon Sep 17 00:00:00 2001 From: pelya Date: Thu, 19 Mar 2020 19:19:14 +0200 Subject: [PATCH] SDL: pxz removed from Debian 10, use xz -T 0 for multithreading compression --- createSourceArchive.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/createSourceArchive.sh b/createSourceArchive.sh index 1c034c45c..ad64e9a25 100755 --- a/createSourceArchive.sh +++ b/createSourceArchive.sh @@ -5,8 +5,8 @@ APPVER=`grep AppVersionName AndroidAppSettings.cfg | sed 's/.*=//' | tr -d '"' | ARCHIVER=gzip EXT=gz -which xz > /dev/null && ARCHIVER="xz -z" && EXT=xz -which pxz > /dev/null && ARCHIVER=pxz && EXT=xz || echo "Install pxz for faster archiving: sudo apt-get install pxz" +which xz > /dev/null && ARCHIVER="xz -z -T 0" && EXT=xz +#which pxz > /dev/null && ARCHIVER=pxz && EXT=xz || echo "Install pxz for faster archiving: sudo apt-get install pxz" # TODO: Boost, Python and ffmpeg are stored in repository as precompiled binaries, the proper way to fix that is to build them using scripts, and remove that binaries # --exclude="*.a" --exclude="*.so"