pipewire/man/meson.build
Peter Hutterer 223f20709d meson: replace join_paths(a, b) with a / b
More readable and from the meson reference manual:
(since 0.49.0) Using the/ operator on strings is equivalent to calling join_paths.
2021-04-15 06:57:00 +00:00

40 lines
1.2 KiB
Meson

manpage_conf = configuration_data()
manpage_conf.set('PACKAGE_NAME', meson.project_name())
manpage_conf.set('PACKAGE_VERSION', meson.project_version())
manpage_conf.set('PACKAGE_URL', 'http://pipewire.org')
manpage_conf.set('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/pipewire/pipewire/issues')
manpage_conf.set('PIPEWIRE_CONFIG_DIR', pipewire_configdir)
manpage_conf.set('top_srcdir', meson.source_root())
manpage_conf.set('top_builddir', meson.build_root())
manpages = [
[ 'pipewire', '1' ],
[ 'pipewire.conf', '5' ],
[ 'pw-cat', '1' ],
[ 'pw-cli', '1' ],
[ 'pw-dot', '1' ],
[ 'pw-profiler', '1' ],
[ 'pw-metadata', '1' ],
[ 'pw-mididump', '1' ],
[ 'pw-mon', '1' ]
]
if not get_option('pipewire-jack').disabled()
manpages += [[ 'pw-jack', '1' ]]
endif
foreach m : manpages
file = m.get(0) + '.' + m.get(1)
infile = file + '.xml.in'
outfile = file + '.xml'
xml = configure_file(input : infile,
output : outfile,
configuration : manpage_conf)
custom_target(file + '.target',
output : file,
input : xml,
command : [xmltoman, '@INPUT@'],
capture : true,
install : true,
install_dir : get_option('mandir') / 'man' + m.get(1))
endforeach