Skip to content

Instantly share code, notes, and snippets.

@leite
Created May 8, 2014 20:54
Show Gist options
  • Save leite/b4ac06ce014684b8e2ea to your computer and use it in GitHub Desktop.
Save leite/b4ac06ce014684b8e2ea to your computer and use it in GitHub Desktop.
install sphinx with libstemmer
sudo wget http://sphinxsearch.com/files/sphinx-2.1.8-release.tar.gz
sudo tar zxf sphinx-2.1.8-release.tar.gz
sudo wget http://snowball.tartarus.org/dist/libstemmer_c.tgz
sudo tar zxf libstemmer_c.tgz
sudo cp -fa libstemmer_c/* sphinx-2.1.8-release/libstemmer_c/
cd sphinx-2.1.8-release
sudo ./configure --enable-id64 --with-libstemmer
sudo make -j2 && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment