ref: 77a5b944f6846b83582dc467d16b71d2a5a538ec
dir: /build-deps.ps1/
if (Test-Path "SDL2-2.30.3") {
Remove-Item -Recurse "SDL2-2.30.3"
}
$SDL2_URL = "https://github.com/libsdl-org/SDL/releases/download/release-2.30.3/SDL2-devel-2.30.3-mingw.zip"
Invoke-WebRequest -URI $SDL2_URL -OutFile "sdl2.zip"
Expand-Archive "sdl2.zip" -DestinationPath "." -Force
Remove-Item "sdl2.zip"