# Exit on error:
set -e

wget http://archive.xfce.org/src/xfce/xfconf/4.12/xfconf-4.12.0.tar.bz2
tar xf xfconf-4.12.0.tar.bz2
cd xfconf-4.12.0

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
