# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libcroco/0.6/libcroco-0.6.8.tar.xz
tar xf libcroco-0.6.8.tar.xz
cd libcroco-0.6.8

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
