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

15 lines
376 B
Ruby

require 'brewkit'
class Redland <Formula
@url='http://download.librdf.org/source/redland-1.0.9.tar.gz'
@homepage='http://librdf.org/'
@md5='e5ef0c29c55b4f0f5aeed7955b4d383b'
depends_on 'raptor'
depends_on 'rasqal'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end