Raptor formula

Raptor is a free software / Open Source C library that provides a set of parsers
and serializers that generate Resource Description Framework (RDF) triples by parsing
syntaxes or serialize the triples into a syntax. The supported parsing syntaxes are
RDF/XML, N-Triples, TRiG, Turtle, RSS tag soup including all versions of RSS, Atom 1.0
and 0.3, GRDDL and microformats for HTML, XHTML and XML and RDFa. The serializing
syntaxes are RDF/XML (regular, and abbreviated), Atom 1.0, GraphViz, JSON, N-Triples,
RSS 1.0 and XMP.
This commit is contained in:
David Höppner 2009-09-14 20:05:59 +02:00 committed by Max Howell
parent 243e111f8a
commit 0381008d8d

12
Formula/raptor.rb Normal file
View file

@ -0,0 +1,12 @@
require 'brewkit'
class Raptor <Formula
@url='http://download.librdf.org/source/raptor-1.4.19.tar.gz'
@homepage='http://librdf.org/raptor/'
@md5='50acbd3b416c3f9e1a3a8ddb825bac25'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end