Added example opus file, added libopus to android scripts.

This commit is contained in:
Ferdinand Thiessen 2016-02-22 00:55:47 +01:00 committed by Lukas Dürrenberger
parent dc7d81f5dc
commit 00152be845
5 changed files with 27 additions and 3 deletions

16
tools/android/download_sources.sh Executable file → Normal file
View file

@ -3,10 +3,14 @@
FLAC_VERSION=1.2.1
VORBIS_VERSION=1.3.3
OGG_VERSION=1.3.1
OPUS_VERSION=1.1.2
OPUSFILE_VERSION=0.7
FLAC=flac-$FLAC_VERSION
VORBIS=libvorbis-$VORBIS_VERSION
OGG=libogg-$OGG_VERSION
OPUS=opus-$OPUS_VERSION
OPUSFILE=opusfile-$OPUSFILE_VERSION
SNDFILE_VERSION=1.0.25
SNDFILE=libsndfile-$SNDFILE_VERSION
@ -34,6 +38,18 @@ then
tar -C build -xf src/$OGG.tar.gz
fi
wget -nc -P src http://downloads.xiph.org/releases/opus/$OPUS.tar.gz
if [ ! -d "$PWD/tmp/$OPUS" ]
then
tar -C build -xf src/$OPUS.tar.gz
fi
wget -nc -P src http://downloads.xiph.org/releases/opus/$OPUSFILE.tar.gz
if [ ! -d "$PWD/tmp/$OPUSFILE" ]
then
tar -C build -xf src/$OPUSFILE.tar.gz
fi
wget -nc -P src http://download.savannah.gnu.org/releases/freetype/$FREETYPE.tar.gz
if [ ! -d "$PWD/tmp/$FREETYPE" ]
then