# Exit on error:
set -e

wget https://download.gnome.org/sources/atk/2.23/atk-2.23.4.tar.xz
tar xf atk-2.23.4.tar.xz
cd atk-2.23.4
./configure --prefix=/local
make install
cd ..
rm -rf atk-2.23.4
rm atk-2.23.4.tar.xz

exit 0
