2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-09 09:53:07 +00:00
|
|
|
|
|
|
|
class Sphinx <Formula
|
2010-03-17 17:45:05 +00:00
|
|
|
url 'http://www.sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz'
|
|
|
|
homepage 'http://www.sphinxsearch.com'
|
|
|
|
md5 '7b9b618cb9b378f949bb1b91ddcc4f54'
|
2009-09-09 09:53:07 +00:00
|
|
|
|
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm "fails with: ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)"
|
2010-01-05 14:48:19 +00:00
|
|
|
|
2010-03-18 14:56:08 +00:00
|
|
|
config_args = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"]
|
|
|
|
# configure script won't auto-select PostgreSQL
|
2010-03-28 22:24:13 +00:00
|
|
|
config_args << "--with-pgsql" if `/usr/bin/which pg_config`.size > 0
|
2010-04-14 19:41:33 +00:00
|
|
|
config_args << "--without-mysql" if `/usr/bin/which mysqld`.size <= 0
|
2010-03-18 14:56:08 +00:00
|
|
|
|
|
|
|
system "./configure", *config_args
|
2009-09-09 09:53:07 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2010-03-17 17:45:05 +00:00
|
|
|
|
|
|
|
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
|
2009-09-09 09:53:07 +00:00
|
|
|
end
|