# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/gtk-doc/1.19/gtk-doc-1.19.tar.xz
tar xf gtk-doc-1.19.tar.xz
cd gtk-doc-1.19

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
