# Exit on error:
set -e

wget http://nice.freedesktop.org/releases/libnice-0.1.13.tar.gz
tar xf libnice-0.1.13.tar.gz
cd libnice-0.1.13

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
