# Depends on dbus
# Depends on libxtst

# Exit on error:
set -e

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

./configure \
    --prefix= \
    --libexecdir=/lib/at-spi2

make install
cd ..
rm -rf at-spi2-core-2.11.1
rm at-spi2-core-2.11.1.tar.xz

# Fix permissions for Package Users:
chmod g+w,o+t /etc/xdg

exit 0
