mingw-sdl-init.sh 366 B

12345678910111213141516
  1. # Due to several issues with the MSYS2 SDL builds, they are not suitable
  2. # for redistribution. Download and extract the MinGW development files for SDL.
  3. cd /mzx-build-workingdir
  4. VERSION=2.0.9
  5. FILENAME=SDL2-devel-$VERSION-mingw.tar.gz
  6. rm -f $FILENAME
  7. wget https://www.libsdl.org/release/$FILENAME
  8. tar -xzf $FILENAME
  9. rm -rf sdl2-mingw
  10. mv SDL2-$VERSION sdl2-mingw