From 26579820a960fcb02576a92d6adb26e87ff271ad Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 31 Aug 2022 20:31:46 -0400 Subject: Adopt REUSE machine-readable licensing standard --- test/meson.build | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'test/meson.build') diff --git a/test/meson.build b/test/meson.build index a1cac7ae..57576f04 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,4 +1,4 @@ -# Copyright 2021-2022 David Robillard +# Copyright 2020-2022 David Robillard # SPDX-License-Identifier: CC0-1.0 OR ISC run_test_suite = files('run_test_suite.py') @@ -9,6 +9,7 @@ wrapper = meson.get_external_property('exe_wrapper', '') # Project Metadata # #################### +# Check release metadata if get_option('strict') and not meson.is_subproject() autoship = find_program('autoship', required: false) if autoship.found() @@ -16,6 +17,14 @@ if get_option('strict') and not meson.is_subproject() endif endif +# Check licensing metadata +reuse = find_program('reuse', required: false) +if reuse.found() + test('REUSE', reuse, + args: ['--root', serd_src_root, 'lint'], + suite: 'data') +endif + ############## # Unit Tests # ############## -- cgit v1.2.1