# Exit on error:
set -e

wget http://ftpmirror.gnu.org/gperf/gperf-3.0.4.tar.gz
tar xf gperf-3.0.4.tar.gz
cd gperf-3.0.4

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
