From 0856211aa9c2a8efb3ed29c0ea891127b227adb4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 23 Sep 2017 13:24:41 +0100 Subject: [PATCH] Added requirement for xz to decompress tar.xz #1579 --- lgsm/functions/check_deps.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 607cc2f1f..c022352a7 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -192,6 +192,9 @@ if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then # Call of Duty elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty 2" ]; then array_deps_required+=( libstdc++5:i386 ) + # Factorio + elif [ "${gamename}" == "Factorio" ]; then + array_deps_required+=( xz-utils ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version") @@ -270,6 +273,9 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # Call of Duty elif [ "${gamename}" == "Call of Duty" ]||[ "${gamename}" == "Call of Duty 2" ]; then array_deps_required+=( compat-libstdc++-33.i686 ) + # Factorio + elif [ "${gamename}" == "Factorio" ]; then + array_deps_required+=( xz ) # Project Zomboid and Minecraft elif [ "${engine}" == "projectzomboid" ]||[ "${engine}" == "lwjgl2" ]; then javaversion=$(java -version 2>&1 | grep "version")