diff options
| -rw-r--r-- | .reuse/dep5 | 10 | ||||
| -rw-r--r-- | test/meson.build | 7 |
2 files changed, 12 insertions, 5 deletions
diff --git a/.reuse/dep5 b/.reuse/dep5 index 78cd3aa..580c2fb 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -32,8 +32,8 @@ License: ISC Files: lv2/**/*.ttl plugins/**/*.ttl plugins/**/*.ttl.in schemas.lv2/xsd.ttl Copyright: Copyright 2011-2022 David Robillard <d@drobilla.net> -Copyright: Copyright 2013 Robin Gareus <robin@gareus.org> -Copyright: Copyright 2006 Steve Harris <steve@plugin.org.uk> + Copyright 2013 Robin Gareus <robin@gareus.org> + Copyright 2006 Steve Harris <steve@plugin.org.uk> License: ISC Files: lv2specgen/DTD/* @@ -47,12 +47,12 @@ License: 0BSD OR ISC Files: schemas.lv2/doap.ttl Copyright: Copyright 2004-2016 Edd Dumbill <edd@usefulinc.com> -Copyright: Copyright 2016-2017 Edd Wilder-James <edd@ewj.me> + Copyright 2016-2017 Edd Wilder-James <edd@ewj.me> License: Apache-2.0 Files: schemas.lv2/foaf.ttl -Copyright: Copyright 2000-2014 Dan Brickley <danbri@danbri.org> -Copyright: Copyright 2000-2014 Libby Miller <libby@nicecupoftea.org> +Copyright: 2000-2014 Dan Brickley <danbri@danbri.org> + 2000-2014 Libby Miller <libby@nicecupoftea.org> License: CC-BY-1.0 Files: schemas.lv2/rdf.ttl diff --git a/test/meson.build b/test/meson.build index 5a2bcfb..5b6a41c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -6,6 +6,13 @@ ######## if get_option('lint') + # Check licensing metadata + reuse = find_program('reuse', required: false) + if reuse.found() + reuse_args = ['--root', lv2_source_root, 'lint'] + test('REUSE', reuse, args: reuse_args, suite: 'data') + endif + # Check for spelling errors codespell = find_program('codespell', required: get_option('tests')) if codespell.found() |