homebrew-core/Formula/sphinx.rb
Jamie van Dyke 414357ad38 Sphinx formula
How do you implement full-text search for that 10+ million row table, keep up
with the load, and stay relevant? Sphinx is good at those kinds of riddles.

Signed-off-by: Max Howell <max@methylblue.com>

I added the mysql dependency.
2009-09-11 17:42:53 +01:00

16 lines
374 B
Ruby

require 'brewkit'
class Sphinx <Formula
@url='http://www.sphinxsearch.com/downloads/sphinx-0.9.8.1.tar.gz'
@homepage='http://www.sphinxsearch.com'
@md5='428a14df41fb425e664d9e2d6178c037'
def deps
'mysql'
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end