author | unc0rr |
Sat, 26 Jan 2013 22:59:48 +0400 | |
changeset 8439 | 3850c4bfe6b5 |
parent 6592 | cf12f07d6f24 |
child 9369 | b96988134dc6 |
permissions | -rwxr-xr-x |
6590 | 1 |
#!/bin/sh |
2 |
download_and_zip (){ |
|
3 |
echo "Downloading: $1" |
|
4 |
curl -silent -o tmp.zip $1 #grab the zips from an url |
|
5 |
unzip -qq tmp.zip -d SDL-android-project/jni/tmp #unzip it to a tmp file |
|
6 |
rm -fr SDL-android-project/jni/$2 #remove any old dirs, we will get those files back with hg revert in CMakeList |
|
7 |
mv SDL-android-project/jni/tmp/* SDL-android-project/jni/$2 #move the tmp dir to the jni directory |
|
8 |
rm tmp.zip #remove old tmp dir |
|
9 |
} |
|
6592
cf12f07d6f24
update the core/android/SDL_android.cpp fix some includes in Android.mks, use a different host to download some libs, sdl doesn't have up to date tarballs..
Xeli
parents:
6590
diff
changeset
|
10 |
download_and_zip http://www.xelification.com/tmp/jpeg.zip jpeg |
cf12f07d6f24
update the core/android/SDL_android.cpp fix some includes in Android.mks, use a different host to download some libs, sdl doesn't have up to date tarballs..
Xeli
parents:
6590
diff
changeset
|
11 |
download_and_zip http://www.xelification.com/tmp/png.zip png |
6590 | 12 |
download_and_zip http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.zip SDL_image |
13 |
download_and_zip http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.zip SDL_mixer |
|
14 |
download_and_zip http://www.xelification.com/tmp/mikmod.zip mikmod #temporary url since the libsdl.org site doesn't work at the moment |
|
6592
cf12f07d6f24
update the core/android/SDL_android.cpp fix some includes in Android.mks, use a different host to download some libs, sdl doesn't have up to date tarballs..
Xeli
parents:
6590
diff
changeset
|
15 |
download_and_zip http://www.xelification.com/tmp/SDL_net.zip SDL_net |
6590 | 16 |
download_and_zip http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.zip SDL_ttf |
17 |
download_and_zip http://www.libsdl.org/tmp/SDL-1.3.zip SDL |
|
18 |