Skip to content

Instantly share code, notes, and snippets.

@flebel
Forked from kmullin/sphinx.rb
Last active March 8, 2016 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flebel/1ef4ecc8530c980491cd to your computer and use it in GitHub Desktop.
Save flebel/1ef4ecc8530c980491cd to your computer and use it in GitHub Desktop.
sphinx.rb
require 'formula'
class Sphinx < Formula
url 'http://sphinxsearch.com/files/sphinx-2.2.10-release.tar.gz'
homepage 'http://www.sphinxsearch.com'
sha256 '054cb86e64bd48997d89386e1224d4405063d9857b2d7c33dc6cc1b9ef6df440'
depends_on 'mysql'
def install
system "./configure"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment