homebrew-core/Formula/soprano.rb
Max Howell a0759ae93a Use new depends_on syntax in all formula
Many formula were imported during the development of the dependency branch.
2009-09-21 19:00:13 +01:00

18 lines
433 B
Ruby

require 'brewkit'
class Soprano <Formula
@url='http://surfnet.dl.sourceforge.net/project/soprano/Soprano/2.3.1/soprano-2.3.1.tar.bz2'
@homepage='http://soprano.sourceforge.net/'
@md5='c9a2c008b80cd5d76599e9d48139dfe9'
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