diff options
-rw-r--r-- | jalv.ttl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/jalv.ttl b/jalv.ttl new file mode 100644 index 0000000..317ae54 --- /dev/null +++ b/jalv.ttl @@ -0,0 +1,29 @@ +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix foaf: <http://xmlns.com/foaf/0.1/> . + +<http://drobilla.net/drobilla#me> + a foaf:Person ; + rdfs:seeAlso <http://drobilla.net/drobilla> ; + foaf:mbox <mailto:d@drobilla.net> ; + foaf:name "David Robillard" ; + foaf:nick "drobilla" . + +<http://drobilla.net/software/jalv> + a doap:Project ; + doap:blog <https://drobilla.net/category/jalv/> ; + doap:bug-database <https://gitlab.com/drobilla/jalv/issues> ; + doap:description "C library for hosting LV2 plugins" ; + doap:developer <http://drobilla.net/drobilla#me> ; + doap:download-page <http://download.drobilla.net/> ; + doap:homepage <http://drobilla.net/software/jalv> ; + doap:implements <http://lv2plug.in/ns/lv2core#> ; + doap:license <http://opensource.org/licenses/isc> ; + doap:maintainer <http://drobilla.net/drobilla#me> ; + doap:name "Jalv" ; + doap:programming-language "C" ; + doap:repository [ + a doap:GitBranch ; + doap:location <https://gitlab.com/drobilla/jalv.git> + ] . |