homebrew-core/Formula/soprano.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

19 lines
453 B
Ruby

require 'formula'
class Soprano <Formula
@url='http://downloads.sourceforge.net/project/soprano/Soprano/2.3.1/soprano-2.3.1.tar.bz2'
@homepage='http://soprano.sourceforge.net/'
@md5='c9a2c008b80cd5d76599e9d48139dfe9'
depends_on 'cmake'
depends_on 'qt'
depends_on 'clucene'
depends_on 'redland'
def install
ENV['CLUCENE_HOME'] = HOMEBREW_PREFIX
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end