homebrew-core/Formula/raptor.rb

13 lines
344 B
Ruby

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