# Exit on error:
set -e

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

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

make
make install

cd ..
exit 0
