The Aspell package contains an interactive spell checking program and the Aspell libraries. Aspell can either be used as a library or as an independent spell checker.
Download (HTTP): http://ftp.gnu.org/gnu/aspell/aspell-0.60.4.tar.gz
Download (FTP): ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.4.tar.gz
Download MD5 sum: 4f1737e726d66476b9c7388831305510
Download size: 1.6 MB
Estimated disk space required: 40.0 MB (Additional 8.1 MB for EN dictionary)
Estimated build time: 0.7 SBU
You'll need to download at least one dictionary. The link below will take you to a page containing links to dictionaries in many languages.
Aspell dictionaries: ftp://ftp.gnu.org/gnu/aspell/dict
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/aspell
Install Aspell by running the following commands:
./configure --prefix=/usr && make
Pre-built HTML documentation is included in the package. If you have teTeX installed and you wish to build additional formats of the documentation, issue any or all of the following commands:
make -C manual pdf && make -C manual pdf && make -C manual ps && cd manual && makeinfo --plaintext -o aspell.txt aspell.texi && makeinfo --plaintext -o aspell-dev.txt aspell-dev.texi && cd ..
This package does not come with a test suite.
Now, as the root user:
make install && install -v -m755 -d /usr/share/doc/aspell-0.60.4/aspell{,-dev}.html && install -v -m644 manual/aspell.html/* \ /usr/share/doc/aspell-0.60.4/aspell.html && install -v -m644 manual/aspell-dev.html/* \ /usr/share/doc/aspell-0.60.4/aspell-dev.html
If you built additional formats of the documentation, install them by issuing the following command as the root user:
install -v -m644 manual/aspell{,-dev}.{ps,pdf,dvi,txt} \ /usr/share/doc/aspell-0.60.4
If you do not plan to install Ispell, then copy the wrapper script ispell:
install -v -m 755 scripts/ispell /usr/bin/
If you do not plan to install Spell, then copy the wrapper script spell:
install -v -m 755 scripts/spell /usr/bin/
make -C manual pdf: This command is listed twice as the first time it runs it will display an error and abort, although it creates the requested file. Running the command again ensures the other file is also created.
Last updated on 2006-06-21 11:26:07 -0500