homebrew-core/Formula/sphinx.rb
Max Howell a0759ae93a Use new depends_on syntax in all formula
Many formula were imported during the development of the dependency branch.
2009-09-21 19:00:13 +01:00

14 lines
366 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'
depends_on 'mysql'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end