From 0713ba20a26c3eb6ae2574b2a23be87ff496f552 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 15 Aug 2022 21:13:11 -0400 Subject: Add project metadata --- NEWS | 6 ++++++ meson.build | 2 +- sratom.ttl | 29 +++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 sratom.ttl diff --git a/NEWS b/NEWS index 71647ba..76964f1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +sratom (0.6.13) unstable; urgency=medium + + * Add project metadata + + -- David Robillard 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: . +@prefix rdfs: . +@prefix doap: . +@prefix foaf: . + + + a foaf:Person ; + rdfs:seeAlso ; + foaf:mbox ; + foaf:name "David Robillard" ; + foaf:nick "drobilla" . + + + a doap:Project ; + doap:blog ; + doap:bug-database ; + doap:description "Library for loading and wrapping LV2 plugin UIs" ; + doap:developer ; + doap:download-page ; + doap:homepage ; + doap:implements ; + doap:license ; + doap:maintainer ; + doap:name "Sratom" ; + doap:programming-language "C" ; + doap:repository [ + a doap:GitBranch ; + doap:location + ] . -- cgit v1.2.1