# Depends on ldd

# 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=/usr

make
make install

cd ..
exit 0
