# Exit on error:
set -e

wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.xz
tar xf libvorbis-1.3.3.tar.xz
cd libvorbis-1.3.3

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
