homebrew-core/Formula/sphinx.rb

16 lines
382 B
Ruby
Raw Normal View History

require 'formula'
class Sphinx <Formula
2009-12-12 18:44:44 +00:00
version '0.9.9'
@url='http://www.sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz'
@homepage='http://www.sphinxsearch.com'
2009-12-12 18:44:44 +00:00
@md5='7b9b618cb9b378f949bb1b91ddcc4f54'
depends_on 'mysql'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end