homebrew-core/Formula/pylucene.rb
Jack Nagel 4a52a23098 pylucene: remove CLT dependency
This is undocumented and I was able to build it on an Xcode-only system,
so remove this dependency.
2014-05-11 18:59:42 -05:00

36 lines
1.2 KiB
Ruby

require "formula"
class Pylucene < Formula
homepage "http://lucene.apache.org/pylucene/index.html"
url "http://www.apache.org/dyn/closer.cgi?path=lucene/pylucene/pylucene-4.8.0-1-src.tar.gz"
sha1 "81ef976ba9c3237ff794b7cbff6d37413a5376bf"
option "with-shared", "build jcc as a shared library"
depends_on :ant => :build
depends_on :python
def install
ENV.prepend_create_path "PYTHONPATH", lib/"python2.7/site-packages"
jcc = "JCC=python -m jcc --arch #{MacOS.preferred_arch}"
opt = "INSTALL_OPT=--prefix #{prefix}"
if build.with? "shared"
jcc << " --shared"
opoo "shared option requires python to be built with the same compiler: #{ENV.compiler}"
else
opt << " --use-distutils" # setuptools only required with shared
ENV["NO_SHARED"] = "1"
end
cd "jcc" do
system "python", "setup.py", "install", "--prefix=#{prefix}"
end
ENV.deparallelize # the jars must be built serially
system "make", "all", "install", opt, jcc, "ANT=ant", "PYTHON=python", "NUM_FILES=8"
end
test do
ENV.prepend_path "PYTHONPATH", HOMEBREW_PREFIX/"lib/python2.7/site-packages"
system "python", "-c", "import lucene; assert lucene.initVM()"
end
end