homebrew-core/Formula/raptor.rb
Brett Koonce a29b562994 raptor2 2.0.10
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-17 19:05:23 -07:00

12 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