project_files/Android-build/download_libs.sh
author Xeli
Tue, 24 Jan 2012 01:03:33 +0100
changeset 6590 5f15b4026b19
child 6592 cf12f07d6f24
permissions -rwxr-xr-x
Added a script to simplify building the android port
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6590
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     1
#!/bin/sh
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     2
download_and_zip (){
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     3
    echo "Downloading: $1"
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     4
    curl -silent -o tmp.zip $1 #grab the zips from an url
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     5
    unzip -qq tmp.zip  -d SDL-android-project/jni/tmp #unzip it to a tmp file
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     6
    rm -fr SDL-android-project/jni/$2 #remove any old dirs, we will get those files back with hg revert in CMakeList
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     7
    mv SDL-android-project/jni/tmp/* SDL-android-project/jni/$2 #move the tmp dir to the jni directory
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     8
    rm tmp.zip #remove old tmp dir
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
     9
}
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    10
download_and_zip http://www.libsdl.org/projects/SDL_image/libs/jpegsr8d.zip jpeg
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    11
download_and_zip http://www.libsdl.org/projects/SDL_image/libs/lpng157.zip png
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    12
download_and_zip http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.zip SDL_image
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    13
download_and_zip http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.zip SDL_mixer
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    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
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    15
download_and_zip http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8.zip SDL_net
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    16
download_and_zip http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.zip SDL_ttf
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    17
download_and_zip http://www.libsdl.org/tmp/SDL-1.3.zip SDL
5f15b4026b19 Added a script to simplify building the android port
Xeli
parents:
diff changeset
    18