# Depends on glib
# Depends on libjpeg
# Depends on libpng

# 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= \
    --with-x11 \
    --without-libtiff
make install
cd ..
rm -rf gdk-pixbuf-2.30.0
rm gdk-pixbuf-2.30.0.tar.xz

exit 0
