# Exit on error:
set -e

wget http://archive.xfce.org/src/xfce/garcon/0.4/garcon-0.4.0.tar.bz2
tar xf garcon-0.4.0.tar.bz2
cd garcon-0.4.0

./configure \
    --prefix=/usr \
    --sysconfdir=/etc

make
make install

cd ..
exit 0
