# Depends on sqlite
# Depends on glib-networking

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/libsoup/2.44/libsoup-2.44.1.tar.xz
tar xf libsoup-2.44.1.tar.xz
cd libsoup-2.44.1

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
