# 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=/usr \
    --libexecdir=/usr/lib/at-spi2 \
    --sysconfdir=/etc

make
make install

cd ..
exit 0
