From b404312686874e539b617d1f27ccbaa5a82936af Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 21 Oct 2021 15:38:10 -0400 Subject: Replace serdi with more fine-grained tools Especially with the new functionality, the complexity of the command-line interface alone was really becoming unmanageable. The serdi implementation also had the highest cyclomatic complexity of the entire codebase by a huge margin. So, take a page from the Unix philosophy and split serdi into several more finely-honed tools that can be freely composed. Though there is still unfortunately quite a bit of option overlap between them due to the common details of reading RDF, I think the resulting tools are a lot easier to understand, both from a user and a developer perspective. --- meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index bddb7392..f75ce560 100644 --- a/meson.build +++ b/meson.build @@ -195,12 +195,14 @@ pkg.generate( version: meson.project_version(), description: 'A lightweight library for working with RDF') -# Build serdi command line utility +# Build command line tools if get_option('tools') subdir('tools') if not get_option('docs').disabled() - install_man('doc/serdi.1') + install_man('doc/serd-filter.1') + install_man('doc/serd-pipe.1') + install_man('doc/serd-sort.1') endif endif -- cgit v1.2.1