Skip to content

Instantly share code, notes, and snippets.

View MaxKorlaar's full-sized avatar
🏠
Working from 🏡

Max Korlaar MaxKorlaar

🏠
Working from 🏡
View GitHub Profile
@ubermuda
ubermuda / sphinx-macosx.sh
Created June 6, 2012 02:05
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