Skip to content

Instantly share code, notes, and snippets.

@n3bulous
Forked from twerth/sphinx.rb
Created July 20, 2012 18:56
Show Gist options
  • Save n3bulous/3152568 to your computer and use it in GitHub Desktop.
Save n3bulous/3152568 to your computer and use it in GitHub Desktop.
Mac homebrew Sphinx 0.9.9 formula
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
url 'http://sphinxsearch.com/files/sphinx-0.9.9.tar.gz'
version '0.9.9'
homepage 'http://www.sphinxsearch.com'
md5 '7b9b618cb9b378f949bb1b91ddcc4f54'
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
fails_with :clang do
build 318
cause <<-EOS.undent
phinxexpr.cpp:1013:11: error: use of undeclared identifier 'ExprEval'
EOS
end
def install
lstem = Pathname.pwd+'libstemmer_c'
lstem.mkpath
Libstemmer.new.brew { mv Dir['*'], lstem }
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 `/usr/bin/which pg_config`.size > 0
args << "--without-mysql" unless `/usr/bin/which mysql`.size > 0
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