homebrew-core/Formula/raptor.rb
Brett Koonce 29aa63e0a8 raptor 2.0.8
Closes Homebrew/homebrew#13726.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-29 10:46:04 -07:00

12 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