#! /bin/bash
#
# Get the Ogg Vorbis codec and players/plugins
#
# All together, this takes around 20 MB of disk-space.
# 
# (download nightly build)
mkdir -p ./unix
cd unix
wget -qr -nc -nH -nd http://www.xiph.org/ogg/vorbis/download/vorbis_nightly_cvs.tgz
cd ..
#
# Download 1.0
# Unix
mkdir -p ./unix
cd unix
wget -qrl 1 -nc -nH -nd -A ".gz" http://www.vorbis.com/files/1.0/unix
cd ..

# MacOs
mkdir -p ./macos
cd macos
wget -qrl 1 -nc -nH -nd -R '.gif,index.html*'  http://www.vorbis.com/files/1.0/macos
cd ..

# Windows
mkdir -p ./windows
cd windows
wget -qrl 1 -nc -nH -nd  -R '.gif,index.html*'  http://www.vorbis.com/files/1.0/windows
cd ..

# PS2
mkdir -p ./ps2
cd ps2
wget -qrl 1 -nc -nH -nd  -R '.gif,index.html*'  http://www.vorbis.com/files/1.0/ps2
cd ..

