怎样编译安装aspell/pspell

2014年12月23日 | 分类: 【技术】

官网:http://aspell.net

编译安装:

wget ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.1.tar.gz && tar -xf aspell-0.60.6.1.tar.gz && cd aspell-0.60.6.1
./configure --prefix=/usr
make && make install

安装字典:

wget ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2017.01.22-0.tar.bz2 && tar -xf aspell6-en-2017.01.22-0.tar.bz2 && cd aspell6-en-2017.01.22-0
./configure
make && make install

在编译PHP时就可以加上:

./configure –with-pspell=/usr

参考:http://www.zahei.com/2010/10/206