Skip to content

Instantly share code, notes, and snippets.

@shmdt
Forked from ubermuda/sphinx-macosx.sh
Created April 14, 2017 07:41
Show Gist options
  • Save shmdt/ce5c121447e660a866a7f5f60362945a to your computer and use it in GitHub Desktop.
Save shmdt/ce5c121447e660a866a7f5f60362945a to your computer and use it in GitHub Desktop.
Installing sphinxsearch on macosx
# first sphinx
brew install sphinx
# the formula does not install libsphinxclient :/
wget http://sphinxsearch.com/files/sphinx-2.0.4-release.tar.gz
tar xzf sphinx-2.0.4-release.tar.gz
cd sphinx-2.0.4-release/api/libsphinxclient/
CXXCPP="gcc -E" ./configure --prefix=/usr/local
make
make install
# php pecl extension
pecl install sphinx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment