From 681368b1bbe4ca6d4dca9826540252eb2762556d Mon Sep 17 00:00:00 2001 From: fanta Date: Fri, 22 Dec 2023 21:21:46 +0100 Subject: [PATCH] soporte linux min --- 01-Scummv.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/01-Scummv.sh b/01-Scummv.sh index 7a94d43..5544f07 100755 --- a/01-Scummv.sh +++ b/01-Scummv.sh @@ -41,5 +41,13 @@ cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; the make clean ; make -j$(nproc); make install fi +# Linux Mint 21.2 +cat /etc/issue | grep "Linux Mint 21.2 Victoria" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++:amd64 make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi +