homebrew-core/Formula/sphinx.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

14 lines
366 B
Ruby

require 'formula'
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