File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed
buildconfig/manylinux-build/docker_base/sdl_libs Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,21 @@ set -e -x
33
44cd $( dirname ` readlink -f " $0 " ` )
55
6- SDL2=" SDL2-2.30.3"
7- IMG2=" SDL2_image-2.8.2"
8- TTF2=" SDL2_ttf-2.22.0"
9- MIX2=" SDL2_mixer-2.8.0"
6+ SDL2_VER=" 2.30.3"
7+ SDL2=" SDL2-$SDL2_VER "
8+ IMG2_VER=" 2.8.2"
9+ IMG2=" SDL2_image-$IMG2_VER "
10+ TTF2_VER=" 2.22.0"
11+ TTF2=" SDL2_ttf-$TTF2_VER "
12+ MIX2_VER=" 2.8.0"
13+ MIX2=" SDL2_mixer-$MIX2_VER "
1014
1115
1216# Download
13- curl -sL --retry 10 https://www.libsdl.org/release/${SDL2} .tar.gz > ${SDL2} .tar.gz
14- # curl -sL --retry 10 https://www.libsdl.org/tmp/release/SDL2-2.0.14.tar.gz > SDL2-2.0.14.tar.gz
15- # curl -sL --retry 10 https://hg.libsdl.org/SDL/archive/tip.tar.gz > ${SDL2}.tar.gz
16-
17- curl -sL --retry 10 https://www.libsdl.org/projects/SDL_image/release/${IMG2} .tar.gz > ${IMG2} .tar.gz
18- curl -sL --retry 10 https://www.libsdl.org/projects/SDL_ttf/release/${TTF2} .tar.gz > ${TTF2} .tar.gz
19- curl -sL --retry 10 https://www.libsdl.org/projects/SDL_mixer/release/${MIX2} .tar.gz > ${MIX2} .tar.gz
17+ curl -sL --retry 10 https://github.com/libsdl-org/SDL/releases/download/release-$SDL2_VER /$SDL2 .tar.gz > ${SDL2} .tar.gz
18+ curl -sL --retry 10 https://github.com/libsdl-org/SDL_image/releases/download/release-$IMG2_VER /$IMG2 .tar.gz > ${IMG2} .tar.gz
19+ curl -sL --retry 10 https://github.com/libsdl-org/SDL_mixer/releases/download/release-$MIX2_VER /$MIX2 .tar.gz > ${MIX2} .tar.gz
20+ curl -sL --retry 10 https://github.com/libsdl-org/SDL_ttf/releases/download/release-$TTF2_VER /$TTF2 .tar.gz > ${TTF2} .tar.gz
2021sha512sum -c sdl2.sha512
2122
2223
You can’t perform that action at this time.
0 commit comments