diff --git a/02-dosbox-x.sh b/02-dosbox-x.sh index bd9260d..bca13f6 100755 --- a/02-dosbox-x.sh +++ b/02-dosbox-x.sh @@ -29,3 +29,11 @@ cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; the git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d 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 automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice58 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra58 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y + git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d + bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d +fi +