Last active
December 15, 2015 17:18
-
-
Save gmanley/5294960 to your computer and use it in GitHub Desktop.
Same as: https://raw.github.com/mxcl/homebrew/82cf700/Library/Formula/sphinx.rb
but for sphinx 0.9.9 which some things require.
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 Libstemmer < Formula | |
# upstream is constantly changing the tarball, | |
# so doing checksum verification here would require | |
# constant, rapid updates to this formula. | |
head 'http://snowball.tartarus.org/dist/libstemmer_c.tgz' | |
homepage 'http://snowball.tartarus.org/' | |
end | |
class Sphinx < Formula | |
homepage 'http://www.sphinxsearch.com' | |
url 'http://sphinxsearch.com/files/archive/sphinx-0.9.9.tar.gz' | |
sha1 '8c739b96d756a50972c27c7004488b55d7458015' | |
head 'http://sphinxsearch.googlecode.com/svn/trunk/' | |
option 'mysql', 'Force compiling against MySQL' | |
option 'pgsql', 'Force compiling against PostgreSQL' | |
option 'id64', 'Force compiling with 64-bit ID support' | |
depends_on :mysql if build.include? 'mysql' | |
depends_on :postgresql if build.include? 'pgsql' | |
fails_with :llvm do | |
build 2334 | |
cause "ld: rel32 out of range in _GetPrivateProfileString from /usr/lib/libodbc.a(SQLGetPrivateProfileString.o)" | |
end | |
fails_with :clang do | |
build 421 | |
cause <<-EOS.undent | |
sphinxexpr.cpp:1802:11: error: use of undeclared identifier 'ExprEval' | |
EOS | |
end | |
def install | |
Libstemmer.new.brew { (buildpath/'libstemmer_c').install Dir['*'] } | |
args = %W[--prefix=#{prefix} | |
--disable-dependency-tracking | |
--localstatedir=#{var} | |
--with-libstemmer] | |
args << "--enable-id64" if build.include? 'id64' | |
%w{mysql pgsql}.each do |db| | |
if build.include? db | |
args << "--with-#{db}" | |
else | |
args << "--without-#{db}" | |
end | |
end | |
system "./configure", *args | |
system "make install" | |
end | |
def caveats; <<-EOS.undent | |
Sphinx has been compiled with libstemmer support. | |
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