Skip to content

Instantly share code, notes, and snippets.

@ubermuda
Created June 6, 2012 02:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ubermuda/2879400 to your computer and use it in GitHub Desktop.
Save ubermuda/2879400 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