homebrew-core/Formula/raptor.rb
Lenny222 1d0fbfb8c2 raptor2 2.0.6
Closes Homebrew/homebrew#11062.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-19 18:54:15 -07:00

12 lines
335 B
Ruby

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