# Enchant is a wrapper library around spellcheck-libraries for conformity.

# Note: depends on pkg-config
# Note: depends on glib
wget -c http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz
tar -xzf enchant-1.6.0.tar.gz
cd enchant-1.6.0
mkdir -p build
cd build
../configure --prefix="/usr"
make # Doesn't mind -j#
make install