中文版本
This patches include work from nzinfo (add mmseg support) and my patch for Hiragana and Katagana support (see this blog post). The changes can be viewed here.
For Sphinx 2.11.1:Github dl.yooooo.us
For Sphinx 2.3.2:Github dl.yooooo.us
Compile
Build mmseg from this repo
|
git clone https://github.com/nzinfo/mmseg cd mmseg automake --add-missing ./bootstrap ./configure --prefix=/usr/local/mmseg make && make install |
Build Sphinx/Coreseek:
|
wget http://sphinxsearch.com/files/sphinx-2.2.11-release.tar.gz tar zxf sphinx-2.2.11-release.tar.gz cd sphinx-2.2.11-release wget https://github.com/fffonion/csft/releases/download/mmseg/csft-sphinx-2.2.11.patch patch -p1 < csft-sphinx-2.2.11.patch sh buildconf.sh automake --add-missing sh buildconf.sh ./configure --prefix=/usr/local/coreseek --with-mysql \ --with-mmseg-includes=/usr/local/mmseg/include/mmseg --with-mmseg-libs=/usr/local/mmseg/lib make -j$(nproc) |