Skip to content

Instantly share code, notes, and snippets.

@compactcode
Forked from stefanoverna/sphinx.rb
Created October 8, 2012 03:38
Show Gist options
  • Save compactcode/3850599 to your computer and use it in GitHub Desktop.
Save compactcode/3850599 to your computer and use it in GitHub Desktop.
Sphinx homebrew recipe with libstemmer support
require 'formula'
class Sphinx < Formula
url 'http://sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz'
homepage 'http://www.sphinxsearch.com'
md5 '7b9b618cb9b378f949bb1b91ddcc4f54'
head 'http://sphinxsearch.googlecode.com/svn/trunk/'
fails_with_llvm "fails with: ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)"
def install
system "curl -O http://snowball.tartarus.org/dist/libstemmer_c.tgz"
system "tar zxvf libstemmer_c.tgz"
args = ["--prefix=#{prefix}", "--with-libstemmer", "--with-mysql", "--with-mysql-libs=/usr/local/Cellar/mysql/5.5.27/lib" "--with-mysql-includes=/usr/local/Cellar/mysql/5.5.27/include"]
system "./configure", *args
system "make install"
end
def caveats
<<-EOS.undent
Sphinx depends on either MySQL or PostreSQL as a datasource.
You can install these with Homebrew with:
brew install mysql
For MySQL server.
brew install mysql-connector-c
For MySQL client libraries only.
brew install postgresql
For PostgreSQL server.
We don't install these for you when you install this formula, as
we don't know which datasource you intend to use.
EOS
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment