diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | sratom.ttl | 29 |
3 files changed, 36 insertions, 1 deletions
@@ -1,3 +1,9 @@ +sratom (0.6.13) unstable; urgency=medium + + * Add project metadata + + -- David Robillard <d@drobilla.net> Tue, 16 Aug 2022 00:35:13 +0000 + sratom (0.6.12) stable; urgency=medium * Switch to meson build system diff --git a/meson.build b/meson.build index 36d31ec..206b6e2 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('sratom', ['c'], - version: '0.6.12', + version: '0.6.13', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ 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> + ] . |