-
-
Save apeckham/1212892 to your computer and use it in GitHub Desktop.
Homebrew Recipe to install Sphinx Search 1.10-beta
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class SphinxBeta < Formula | |
url 'http://sphinxsearch.com/files/sphinx-1.10-beta.tar.gz' | |
homepage 'http://www.sphinxsearch.com' | |
md5 '5b52ce9e93a73c66d37bc3a2402f14fa' | |
head 'http://sphinxsearch.googlecode.com/svn/trunk/' | |
def install | |
fails_with_llvm "fails with: ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)" | |
config_args = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"] | |
# configure script won't auto-select PostgreSQL | |
config_args << "--with-pgsql" if `/usr/bin/which pg_config`.size > 0 | |
config_args << "--without-mysql" if `/usr/bin/which mysql`.size <= 0 | |
system "./configure", *config_args | |
system "make install" | |
end | |
def patches | |
# we need this for string attribute support in SphinxSE | |
# see http://sphinxsearch.com/bugs/view.php?id=676 | |
{ | |
:p0 => 'https://gist.github.com/raw/896168/sphinx_se_patch.diff' | |
} | |
end | |
def caveats | |
<<-EOS.undent | |
Sphinx depends on either MySQL or PostreSQL as a datasource. | |
You can install these with Homebrew with: | |
brew install mysql | |
For MySQL server. | |
brew install mysql-connector-c | |
For MySQL client libraries only. | |
brew install postgresql | |
For PostgreSQL server. | |
We don't install these for you when you install this formula, as | |
we don't know which datasource you intend to use. | |
EOS | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl https://raw.github.com/gist/981143/9a72fea0f0b233d9701fb455630dd22abbe3ca42/sphinx-beta.rb > /usr/local/Library/Formula/sphinx-beta.rb