Skip to content

Instantly share code, notes, and snippets.

@sydneyitguy
Forked from ubermuda/sphinx-macosx.sh
Created August 23, 2012 01:22
Show Gist options
  • Save sydneyitguy/3431080 to your computer and use it in GitHub Desktop.
Save sydneyitguy/3431080 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