summaryrefslogtreecommitdiffstats
path: root/sratom.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-15 21:13:11 -0400
committerDavid Robillard <d@drobilla.net>2022-08-15 21:13:11 -0400
commit0713ba20a26c3eb6ae2574b2a23be87ff496f552 (patch)
tree378e9f4d74ce6e137ddfd5af255a8fd2e5704d3d /sratom.ttl
parentbde09a6b5b6597365ad77a2093ff1e5e7110a5df (diff)
downloadsratom-0713ba20a26c3eb6ae2574b2a23be87ff496f552.tar.gz
sratom-0713ba20a26c3eb6ae2574b2a23be87ff496f552.tar.bz2
sratom-0713ba20a26c3eb6ae2574b2a23be87ff496f552.zip
Add project metadata
Diffstat (limited to 'sratom.ttl')
-rw-r--r--sratom.ttl29
1 files changed, 29 insertions, 0 deletions
diff --git a/sratom.ttl b/sratom.ttl
new file mode 100644
index 0000000..6632fe4
--- /dev/null
+++ b/sratom.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/sratom>
+ a doap:Project ;
+ doap:blog <https://drobilla.net/category/sratom/> ;
+ doap:bug-database <https://gitlab.com/lv2/sratom/issues> ;
+ doap:description "Library for loading and wrapping LV2 plugin UIs" ;
+ doap:developer <http://drobilla.net/drobilla#me> ;
+ doap:download-page <http://download.drobilla.net/> ;
+ doap:homepage <http://drobilla.net/software/sratom> ;
+ doap:implements <http://lv2plug.in/ns/extensions/ui> ;
+ doap:license <http://opensource.org/licenses/isc> ;
+ doap:maintainer <http://drobilla.net/drobilla#me> ;
+ doap:name "Sratom" ;
+ doap:programming-language "C" ;
+ doap:repository [
+ a doap:GitBranch ;
+ doap:location <https://gitlab.com/lv2/sratom.git>
+ ] .