2017-06-16 17:31:40 +02:00
|
|
|
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')
|
2020-01-28 16:09:56 +01:00
|
|
|
manpage_conf.set('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/pipewire/pipewire/issues')
|
2018-08-17 10:18:41 +02:00
|
|
|
manpage_conf.set('PIPEWIRE_CONFIG_DIR', pipewire_configdir)
|
2017-06-16 17:31:40 +02:00
|
|
|
manpage_conf.set('top_srcdir', meson.source_root())
|
|
|
|
|
manpage_conf.set('top_builddir', meson.build_root())
|
|
|
|
|
|
2018-08-30 14:49:08 +02:00
|
|
|
manpages = [
|
2021-04-15 15:18:03 +10:00
|
|
|
'pipewire.1.xml.in',
|
|
|
|
|
'pipewire.conf.5.xml.in',
|
|
|
|
|
'pw-cat.1.xml.in',
|
|
|
|
|
'pw-cli.1.xml.in',
|
|
|
|
|
'pw-dot.1.xml.in',
|
|
|
|
|
'pw-metadata.1.xml.in',
|
|
|
|
|
'pw-mididump.1.xml.in',
|
|
|
|
|
'pw-mon.1.xml.in',
|
|
|
|
|
'pw-profiler.1.xml.in',
|
2018-08-30 14:49:08 +02:00
|
|
|
]
|
2017-06-16 17:31:40 +02:00
|
|
|
|
2021-03-10 15:36:27 -03:00
|
|
|
if not get_option('pipewire-jack').disabled()
|
2021-04-15 15:18:03 +10:00
|
|
|
manpages += 'pw-jack.1.xml.in'
|
2020-06-08 14:24:49 +01:00
|
|
|
endif
|
|
|
|
|
|
2017-06-16 17:31:40 +02:00
|
|
|
foreach m : manpages
|
2021-04-15 15:18:03 +10:00
|
|
|
file = m.split('.xml.in').get(0)
|
|
|
|
|
xml = configure_file(input : m,
|
|
|
|
|
output : file + '.xml',
|
2017-06-16 17:31:40 +02:00
|
|
|
configuration : manpage_conf)
|
2021-04-15 15:18:03 +10:00
|
|
|
section = file.split('.').get(-1)
|
2018-08-30 14:49:08 +02:00
|
|
|
custom_target(file + '.target',
|
|
|
|
|
output : file,
|
2017-06-16 17:31:40 +02:00
|
|
|
input : xml,
|
|
|
|
|
command : [xmltoman, '@INPUT@'],
|
|
|
|
|
capture : true,
|
|
|
|
|
install : true,
|
2021-04-15 15:18:03 +10:00
|
|
|
install_dir : get_option('mandir') / 'man' + section)
|
2017-06-16 17:31:40 +02:00
|
|
|
endforeach
|