Skip to content

Instantly share code, notes, and snippets.

@kmullin
Created October 17, 2012 20:10
Show Gist options
  • Save kmullin/3907840 to your computer and use it in GitHub Desktop.
Save kmullin/3907840 to your computer and use it in GitHub Desktop.
homebrew formula for sphinx 0.9.9
require 'formula'
class Sphinx < Formula
url 'http://www.sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz'
homepage 'http://www.sphinxsearch.com'
md5 '7b9b618cb9b378f949bb1b91ddcc4f54'
depends_on 'mysql'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment