Browse Source

Added requirement for xz to decompress tar.xz #1579

pull/1639/head
Daniel Gibbs 8 years ago
parent
commit
0856211aa9
  1. 6
      lgsm/functions/check_deps.sh

6
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")

Loading…
Cancel
Save