# Exit on error:
set -e

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

./configure \
    --prefix=

make install
cd ..
rm -rf gperf-3.0.4
rm gperf-3.0.4.tar.gz

exit 0
