homebrew-core/Formula/raptor.rb

13 lines
345 B
Ruby

require 'formula'
class Raptor < Formula
homepage 'http://librdf.org/raptor/'
url 'http://download.librdf.org/source/raptor2-2.0.10.tar.gz'
sha1 'b03c6dc87af9b5d3adb3edad29249f3184843dd6'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end