CLucene formula
CLucene is a C++ port of Lucene: the high-performance, full-featured text search engine written in Java. CLucene is faster than lucene as it is written in C++.
This commit is contained in:
parent
7816103dd9
commit
8a63a7a0cc
1 changed files with 12 additions and 0 deletions
12
Formula/clucene-core.rb
Normal file
12
Formula/clucene-core.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
require 'brewkit'
|
||||
|
||||
class CluceneCore <Formula
|
||||
@url='http://kent.dl.sourceforge.net/project/clucene/clucene-core-stable/0.9.21/clucene-core-0.9.21.tar.bz2'
|
||||
@homepage='http://sourceforge.net/projects/clucene/'
|
||||
@md5='181cf9a827fd072717d9b09d1a1bda74'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue