# Exit on error:
set -e

wget http://downloads.sourceforge.net/project/xarchiver/xarchiver-0.5.4.tar.bz2
tar xf xarchiver-0.5.4.tar.bz2
cd xarchiver-0.5.4

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
