homebrew-core/Formula/raptor.rb

13 lines
335 B
Ruby

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