2009-09-09 09:53:07 +00:00
|
|
|
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'
|
|
|
|
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'mysql'
|
2009-09-09 09:53:07 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|