summaryrefslogtreecommitdiffstats
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
parentbde09a6b5b6597365ad77a2093ff1e5e7110a5df (diff)
downloadsratom-0713ba20a26c3eb6ae2574b2a23be87ff496f552.tar.gz
sratom-0713ba20a26c3eb6ae2574b2a23be87ff496f552.tar.bz2
sratom-0713ba20a26c3eb6ae2574b2a23be87ff496f552.zip
Add project metadata
-rw-r--r--NEWS6
-rw-r--r--meson.build2
-rw-r--r--sratom.ttl29
3 files changed, 36 insertions, 1 deletions
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 <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>
+ ] .