-
Notifications
You must be signed in to change notification settings - Fork 20
/
lilv.ttl
29 lines (27 loc) · 1.06 KB
/
lilv.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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:[email protected]> ;
foaf:name "David Robillard" ;
foaf:nick "drobilla" .
<http://drobilla.net/software/lilv>
a doap:Project ;
doap:blog <https://drobilla.net/category/lilv/> ;
doap:bug-database <https://gitlab.com/lv2/lilv/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/lilv> ;
doap:implements <http://lv2plug.in/ns/lv2core> ;
doap:license <http://opensource.org/licenses/isc> ;
doap:maintainer <http://drobilla.net/drobilla#me> ;
doap:name "Lilv" ;
doap:programming-language "C" ;
doap:repository [
a doap:GitBranch ;
doap:location <https://gitlab.com/lv2/lilv.git>
] .