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 = [
|
|
|
|
|
[ 'pipewire', '1' ],
|
|
|
|
|
[ 'pipewire.conf', '5' ],
|
2020-05-03 07:25:28 +02:00
|
|
|
[ 'pw-cat', '1' ],
|
2020-01-28 16:09:56 +01:00
|
|
|
[ 'pw-cli', '1' ],
|
2020-05-02 20:19:20 +02:00
|
|
|
[ 'pw-profiler', '1' ],
|
2020-01-28 16:09:56 +01:00
|
|
|
[ 'pw-mon', '1' ]
|
2018-08-30 14:49:08 +02:00
|
|
|
]
|
2017-06-16 17:31:40 +02:00
|
|
|
|
|
|
|
|
foreach m : manpages
|
2018-08-30 14:49:08 +02:00
|
|
|
file = m.get(0) + '.' + m.get(1)
|
|
|
|
|
infile = file + '.xml.in'
|
|
|
|
|
outfile = file + '.xml'
|
2017-06-16 17:31:40 +02:00
|
|
|
xml = configure_file(input : infile,
|
|
|
|
|
output : outfile,
|
|
|
|
|
configuration : manpage_conf)
|
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,
|
2018-09-19 16:06:29 +02:00
|
|
|
install_dir : join_paths(get_option('mandir'), 'man' + m.get(1)))
|
2017-06-16 17:31:40 +02:00
|
|
|
endforeach
|