# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/gobject-introspection/1.39/gobject-introspection-1.39.0.tar.xz
tar xf gobject-introspection-1.39.0.tar.xz
cd gobject-introspection-1.39.0
./configure --prefix=
make install
cd ..
rm -rf gobject-introspection-1.39.0
rm gobject-introspection-1.39.0.tar.xz

exit 0
