pipewire/man/meson.build

36 lines
1.1 KiB
Meson
Raw Normal View History

2017-06-16 15:31:40 +00: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 15:09:56 +00:00
manpage_conf.set('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/pipewire/pipewire/issues')
2018-08-17 08:18:41 +00:00
manpage_conf.set('PIPEWIRE_CONFIG_DIR', pipewire_configdir)
2017-06-16 15:31:40 +00:00
manpage_conf.set('top_srcdir', meson.source_root())
manpage_conf.set('top_builddir', meson.build_root())
manpages = [
[ 'pipewire', '1' ],
[ 'pipewire.conf', '5' ],
2020-05-03 05:25:28 +00:00
[ 'pw-cat', '1' ],
2020-01-28 15:09:56 +00:00
[ 'pw-cli', '1' ],
[ 'pw-dot', '1' ],
2020-05-02 18:19:20 +00:00
[ 'pw-profiler', '1' ],
2020-05-03 18:50:38 +00:00
[ 'pw-mididump', '1' ],
2020-01-28 15:09:56 +00:00
[ 'pw-mon', '1' ]
]
2017-06-16 15:31:40 +00:00
foreach m : manpages
file = m.get(0) + '.' + m.get(1)
infile = file + '.xml.in'
outfile = file + '.xml'
2017-06-16 15:31:40 +00:00
xml = configure_file(input : infile,
output : outfile,
configuration : manpage_conf)
custom_target(file + '.target',
output : file,
2017-06-16 15:31:40 +00:00
input : xml,
command : [xmltoman, '@INPUT@'],
capture : true,
install : true,
install_dir : join_paths(get_option('mandir'), 'man' + m.get(1)))
2017-06-16 15:31:40 +00:00
endforeach