# 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=
make install
cd ..
rm -rf at-spi2-atk-2.11.1
rm at-spi2-atk-2.11.1.tar.xz

# Fix permissions for Package Users:
chmod g+w,o+t /lib/gtk-2.0
chmod g+w,o+t /lib/gtk-2.0/modules

exit 0
