summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-15 21:14:19 -0400
committerDavid Robillard <d@drobilla.net>2022-08-15 21:14:19 -0400
commitf9bc3f62b8e9522f3b0d732d46b96eda0ff2197b (patch)
treed894255c18936d9c11fcea0778d74d7672fefaeb
parentecebfdb35fd8af72dc918ff34ae3f3366521925d (diff)
downloadsuil-f9bc3f62b8e9522f3b0d732d46b96eda0ff2197b.tar.gz
suil-f9bc3f62b8e9522f3b0d732d46b96eda0ff2197b.tar.bz2
suil-f9bc3f62b8e9522f3b0d732d46b96eda0ff2197b.zip
Add project metadata
-rw-r--r--NEWS3
-rw-r--r--suil.ttl29
2 files changed, 31 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9b200d6..02b3ea3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,9 @@
suil (0.10.17) unstable; urgency=medium
* Fix MacOS build when Gtk3 and Qt5 are present without X11
+ * Add project metadata
- -- David Robillard <d@drobilla.net> Mon, 15 Aug 2022 21:09:19 +0000
+ -- David Robillard <d@drobilla.net> Tue, 16 Aug 2022 00:34:49 +0000
suil (0.10.16) stable; urgency=medium
diff --git a/suil.ttl b/suil.ttl
new file mode 100644
index 0000000..8ee0388
--- /dev/null
+++ b/suil.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/suil>
+ a doap:Project ;
+ doap:blog <https://drobilla.net/category/suil/> ;
+ doap:bug-database <https://gitlab.com/lv2/suil/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/suil> ;
+ doap:implements <http://lv2plug.in/ns/extensions/ui> ;
+ doap:license <http://opensource.org/licenses/isc> ;
+ doap:maintainer <http://drobilla.net/drobilla#me> ;
+ doap:name "Suil" ;
+ doap:programming-language "C" ;
+ doap:repository [
+ a doap:GitBranch ;
+ doap:location <https://gitlab.com/lv2/suil.git>
+ ] .