diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | suil.ttl | 29 |
2 files changed, 31 insertions, 1 deletions
@@ -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> + ] . |