# Depends on glib
# Depends on libtiff

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/2.30/gdk-pixbuf-2.30.0.tar.xz
tar xf gdk-pixbuf-2.30.0.tar.xz
cd gdk-pixbuf-2.30.0

./configure \
    --prefix=/usr \
    --with-x11

make
make install

cd ..
exit 0
