Created
December 6, 2011 17:00
-
-
Save sh/1438954 to your computer and use it in GitHub Desktop.
Brew formula for installing Sphinx Search 2.0.2 Beta
This file contains hidden or 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 Sphinx < Formula | |
| url 'http://sphinxsearch.com/files/sphinx-2.0.2-beta.tar.gz' | |
| homepage 'http://www.sphinxsearch.com' | |
| md5 'fafe0f1a71d0ded32404c067eba7d0b3' | |
| head 'http://sphinxsearch.googlecode.com/svn/trunk/' | |
| fails_with_llvm "ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)", | |
| :build => 2334 | |
| def install | |
| args = ["--prefix=#{prefix}", | |
| "--disable-debug", | |
| "--disable-dependency-tracking", | |
| "--localstatedir=#{var}"] | |
| # configure script won't auto-select PostgreSQL | |
| args << "--with-pgsql" if `/usr/bin/which pg_config`.size > 0 | |
| args << "--without-mysql" if `/usr/bin/which mysql`.size <= 0 | |
| system "./configure", *args | |
| system "make install" | |
| 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