From 755ce69b94e900f961af4c0a8c3869456bf9c0cd Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Thu, 1 Jul 2021 12:49:19 +0100 Subject: Add a build-tools option to allow installing only the mime data When set to false this allows installing only the data files but not the update-mime-database program. This is useful for me since I am cross-compiling for an architecture that does not have a working glib-2.0 port yet. --- meson.build | 13 +++++++------ meson_options.txt | 4 ++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index 60f17ae7..8c36f7b8 100644 --- a/meson.build +++ b/meson.build @@ -56,14 +56,15 @@ foreach function : check_functions endforeach -libxml = dependency('libxml-2.0', version: '>=2.4') -glib2 = dependency('glib-2.0', version: '>=2.6.0') - -gio = dependency('gio-2.0', required: false) - subdir('po') subdir('data') -subdir('src') +if get_option('build-tools') + libxml = dependency('libxml-2.0', version: '>=2.4') + glib2 = dependency('glib-2.0', version: '>=2.6.0') + + gio = dependency('gio-2.0', required: false) + subdir('src') +endif subdir('tests') configure_file( diff --git a/meson_options.txt b/meson_options.txt index 9dcf72c0..dbc4162c 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -3,6 +3,10 @@ option('update-mimedb', type: 'boolean', value: false, description: 'Call update-mime-database after install. It should not be enabled if DESTDIR is used.', ) +option('build-tools', type: 'boolean', value: true, + description: 'Build the update-mime-database tools. If set to false only the mime data is installed.', +) + option('xdgmime-path', type: 'string', value: './xdgmime', description: 'Path to the xdgmime executable', ) -- cgit v1.2.1