homebrew-core/Formula/strigi.rb
Mike Arthur b3900f37dd Be nicer to Sourceforge by using their gateway server
Thus we download from the best mirror always.
2009-12-05 15:09:31 +00:00

18 lines
465 B
Ruby

require 'formula'
class Strigi <Formula
@url='http://downloads.sourceforge.net/project/strigi/strigi/strigi-0.6.4/strigi-0.6.4.tar.bz2'
@homepage='http://strigi.sourceforge.net/'
@md5='324fd9606ac77765501717ff92c04f9a'
depends_on 'cmake'
depends_on 'CLucene'
def install
ENV['CLUCENE_HOME'] = HOMEBREW_PREFIX
ENV['EXPAT_HOME'] = '/usr/'
system "cmake . #{std_cmake_parameters} -DENABLE_EXPAT:BOOL=ON"
system "make install"
end
end