# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/atk/2.11/atk-2.11.1.tar.xz
tar xf atk-2.11.1.tar.xz
cd atk-2.11.1
./configure --prefix=
make install
cd ..
rm -rf atk-2.11.1
rm atk-2.11.1.tar.xz

exit 0
