diff options
Diffstat (limited to 'serd.ttl')
-rw-r--r-- | serd.ttl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/serd.ttl b/serd.ttl new file mode 100644 index 00000000..b92e248e --- /dev/null +++ b/serd.ttl @@ -0,0 +1,32 @@ +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +<http://drobilla.net/drobilla#me> + a foaf:Person ; + foaf:name "David Robillard" ; + foaf:mbox <mailto:d@drobilla.net> ; + rdfs:seeAlso <http://drobilla.net/drobilla> . + +<http://drobilla.net/sw/serd> + a doap:Project ; + doap:name "Serd" ; + doap:homepage <http://drobilla.net/software/serd> ; + doap:license <http://opensource.org/licenses/isc> ; + doap:shortdesc "A high-performance RDF reader/writer" ; + doap:description "Serd is a lightweight high-performance C library for reading and writing RDF in the Turtle, NTriples, TriG, and NQuads syntaxes." ; + doap:created "2011-09-28"^^xsd:date ; + doap:programming-language "C" ; + doap:implements <http://www.w3.org/TR/n-quads/> , + <http://www.w3.org/TR/n-triples/> , + <http://www.w3.org/TR/trig/> , + <http://www.w3.org/TR/turtle/> ; + doap:bug-database <http://dev.drobilla.net/> ; + doap:blog <http://drobilla.net/> ; + doap:developer <http://drobilla.net/drobilla#me> ; + doap:maintainer <http://drobilla.net/drobilla#me> ; + doap:repository [ + a doap:GitBranch ; + doap:location <http://git.drobilla.net/serd.git> + ] . |