6802902df9
Closes Homebrew/homebrew#29255. 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.14.tar.gz'
|
|
sha1 'f0dc155ee616aac0e5397dd659519c9d0a262f21'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|