homebrew-core/Formula/clucene.rb

43 lines
1.4 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Clucene < Formula
homepage 'http://clucene.sourceforge.net'
url 'http://downloads.sourceforge.net/project/clucene/clucene-core-stable/0.9.21b/clucene-core-0.9.21b.tar.bz2'
sha1 '8bc505b64f82723c2dc901036cb0607500870973'
2012-08-27 05:17:25 +00:00
2013-09-21 23:33:42 +00:00
head do
url 'git://clucene.git.sourceforge.net/gitroot/clucene/clucene'
depends_on 'cmake' => :build
end
2012-09-26 17:13:35 +00:00
def patches
if MacOS.version >= :mavericks
# Fix libpthread dependencies in OS X 10.9
# Based on MacPorts patches: http://trac.macports.org/ticket/40899
# Reported upstream: http://sourceforge.net/p/clucene/bugs/219/
if build.head?
'https://gist.github.com/lfranchi/7954811/raw/828176c01a8f2c1c11eff43bf6773242955dabab/CLucene-HEAD-mavericks.patch'
else
{:p0 => [
'https://gist.github.com/tlvince/7934499/raw/d0859996dbda8f4cf643d091ae6b491f0a64da59/CLucene-LuceneThreads.h.diff',
'https://gist.github.com/tlvince/7935339/raw/fd78b1ada278eaf1904e1437efa0f2a1265041a9/CLucene-config-repl_tchar.h.diff'
]}
end
end
end
def install
2012-08-27 05:17:25 +00:00
if build.head?
system "cmake", ".", *std_cmake_args
2011-05-11 21:48:58 +00:00
else
2012-02-22 05:12:27 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2011-05-11 21:48:58 +00:00
end
2011-11-22 04:03:04 +00:00
2012-03-11 02:33:13 +00:00
# Serialize the install step. See:
# https://github.com/Homebrew/homebrew/issues/8712
2011-11-22 04:03:04 +00:00
ENV.j1
system "make install"
end
end