# Depends on at-spi2-atk
# Depends on at-spi2-core
# ? Depends on sqlite

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/glib-networking/2.38/glib-networking-2.38.1.tar.xz
tar xf glib-networking-2.38.1.tar.xz
cd glib-networking-2.38.1

# Prevent the creation of /files:
sed -i '/^EXTRA/s/EXTRA/#EXTRA/' tls/tests/Makefile.am
automake
sed -i '/^install-testfilesDATA/d' tls/tests/Makefile.in
sed -i 's/install-testfilesDATA//' tls/tests/Makefile.in

./configure \
    --prefix=/usr \
    --with-gnutls \
    --with-ca-certificates=/etc/ssl/

make
make install

cd ..
exit 0
