homebrew-core/Formula/sphinx.rb

61 lines
1.7 KiB
Ruby
Raw Normal View History

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
2011-03-10 05:11:03 +00:00
class Sphinx < Formula
2012-03-03 23:50:27 +00:00
homepage 'http://www.sphinxsearch.com'
url 'http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz'
md5 'a1293aecd5034aa797811610beb7ba89'
2012-03-03 23:50:27 +00:00
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
2010-01-05 14:48:19 +00:00
2011-03-21 21:24:22 +00:00
def install
lstem = Pathname.pwd+'libstemmer_c'
2012-03-03 23:50:27 +00:00
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
2012-03-03 23:50:27 +00:00
args << "--with-pgsql" if which 'pg_config'
args << "--without-mysql" unless which 'mysql'
2011-03-21 21:24:22 +00:00
system "./configure", *args
system "make install"
end
2012-03-03 23:50:27 +00:00
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