740c6217a8
Closes Homebrew/homebrew#25322. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
397 B
Ruby
14 lines
397 B
Ruby
require 'formula'
|
|
|
|
class Raptor < Formula
|
|
homepage 'http://librdf.org/raptor/'
|
|
url 'http://download.librdf.org/source/raptor2-2.0.12.tar.gz'
|
|
sha1 'd485d409e93b79a9d3690ba2b9d15ca6e1c4b84e'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|