# Depends on glib
# Depends on atk
# Depends on pango
# Depends on cairo
# Depends on cairo-gobject
# Depends on gdk-pixbuf
# Depends on at-spi2-atk (atk-bridge)

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/gtk+/3.8/gtk+-3.8.6.tar.xz
tar xf gtk+-3.8.6.tar.xz
cd gtk+-3.8.6.tar.xz

./configure \
    --prefix=/usr \
    --disable-introspection \
    --sysconfdir=/etc

make
make install

cd ..
exit 0
