diff --git a/compileDosBox-x.sh b/compileDosBox-x.sh index 4b6d238..dbe9969 100755 --- a/compileDosBox-x.sh +++ b/compileDosBox-x.sh @@ -36,6 +36,13 @@ cat /etc/issue | grep "Ubuntu 20.04.4 LTS" 1>/dev/null ; if [ "$?" -ne 1 ]; then bash build-debug-sdl2 ; make install ; rm -rf $d fi +# Ubuntu 22.04.1 LTS +cat /etc/issue | grep "Ubuntu 22.04.1 LTS" 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 flui> + git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d + bash build-debug-sdl2 ; make install ; rm -rf $d +fi + # OpenSUSE Leap 15.4 cat /etc/os-release | grep -iE "openSUSE Leap 15.4" 1>/dev/null ; if [ "$?" -ne 1 ]; then zypper refresh ; zypper in -y git gcc gcc-c++ make nasm libncurses* libSDL2_net* fluidsynth libpcap-devel automake ncurses-devel zlib-devel