# Depends on dbus
# Depends on at-spi2-core (atspi-2)

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/gnome/sources/at-spi2-atk/2.11/at-spi2-atk-2.11.1.tar.xz
tar xf at-spi2-atk-2.11.1.tar.xz
cd at-spi2-atk-2.11.1

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
