29aa63e0a8
Closes Homebrew/homebrew#13726. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
344 B
Ruby
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
|