-
-
Save americos/5373423 to your computer and use it in GitHub Desktop.
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 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://www.sphinxsearch.com/downloads/sphinx-0.9.8.1.tar.gz' | |
md5 '428a14df41fb425e664d9e2d6178c037' | |
head 'http://sphinxsearch.googlecode.com/svn/trunk/' | |
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 318 | |
cause <<-EOS.undent | |
configure: error: Gcc version error. Minspec is 3.4 | |
http://sphinxsearch.com/bugs/view.php?id=1123 | |
sphinxexpr.cpp:1799:11: error: use of undeclared identifier 'ExprEval' | |
https://github.com/mxcl/homebrew/issues/10016 | |
https://github.com/mxcl/homebrew/pull/10698 | |
EOS | |
end | |
def options | |
[ | |
['--mysql', 'Force compiling against MySQL.'], | |
['--pgsql', 'Force compiling against PostgreSQL.'], | |
] | |
end | |
def install | |
# lstem = Pathname.pwd+'libstemmer_c' | |
# Libstemmer.new.brew { lstem.install Dir['*'] } | |
args = ["--prefix=#{prefix}", | |
"--disable-debug", | |
"--disable-dependency-tracking", | |
"--localstatedir=#{var}"] | |
# always build with libstemmer support | |
# args << "--with-libstemmer" | |
# configure script won't auto-select PostgreSQL | |
#args << "--with-pgsql" if ARGV.include?('--pgsql') or which 'pg_config' | |
#args << "--without-mysql" unless ARGV.include?('--mysql') or which 'mysql_config' | |
args << "--with-pgsql" | |
args << "--with-mysql" | |
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 | |
__END__ | |
diff --git a/configure b/configure | |
index aebac75..82d6d05 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -4361,7 +4361,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext | |
#ifdef __GNUC__ | |
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 3) | |
-void main() {} | |
+int main() {} | |
#else | |
syntax error | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment