summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2021-01-24 11:45:52 +0200
committerVille Skyttä <ville.skytta@iki.fi>2021-01-24 11:45:52 +0200
commitbaeb49e36bc162bcbd243e733d2a9f1eb9abfefb (patch)
tree671cd8046a8718ac490a2cada068660a60e79448
parent975cbaac248bec493424edc679437cb7ed0d694e (diff)
downloadshared-mime-info-wip/scop/xmlto-optional.tar.gz
meson: make xmlto optional, build spec only if foundwip/scop/xmlto-optional
Refs https://gitlab.freedesktop.org/xdg/shared-mime-info/-/issues/150
-rw-r--r--data/meson.build22
-rw-r--r--meson.build2
2 files changed, 13 insertions, 11 deletions
diff --git a/data/meson.build b/data/meson.build
index 263567d9..24361c97 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -22,14 +22,16 @@ install_data(
install_dir : get_option('datadir') / 'gettext/its'
)
-custom_target('shared-mime-info-spec-html',
- input : 'shared-mime-info-spec.xml',
- output: 'shared-mime-info-spec-html',
- command: [
- xmlto,
- '-o', '@OUTPUT@',
- 'html-nochunks',
- '@INPUT@',
- ],
- build_by_default: true,
+if xmlto.found()
+ custom_target('shared-mime-info-spec-html',
+ input : 'shared-mime-info-spec.xml',
+ output: 'shared-mime-info-spec-html',
+ command: [
+ xmlto,
+ '-o', '@OUTPUT@',
+ 'html-nochunks',
+ '@INPUT@',
+ ],
+ build_by_default: true,
)
+endif
diff --git a/meson.build b/meson.build
index 9a28573e..0d08c8a0 100644
--- a/meson.build
+++ b/meson.build
@@ -22,7 +22,7 @@ config.set_quoted('VERSION', meson.project_version())
itstool = find_program('itstool')
xmllint = find_program('xmllint')
-xmlto = find_program('xmlto')
+xmlto = find_program('xmlto', required: false)
###############################################################################
# Find xdgmime