# Exit on error:
set -e

wget http://download.savannah.gnu.org/releases/confuse/confuse-2.7.tar.gz
tar xf confuse-2.7.tar.gz
cd confuse-2.7

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
