# Exit on error:
set -e

wget http://downloads.sourceforge.net/hunspell/hyphen-2.8.8.tar.gz
tar xf hyphen-2.8.8.tar.gz
cd hyphen-2.8.8
./configure --prefix=
make install
cd ..
rm -rf hyphen-2.8.8
rm hyphen-2.8.8.tar.gz

exit 0
