120eea449e
The Go implementation had deprecated the reset command, right from the beginning, in favour of 'podman system reset'. It's time to finally remove it. https://github.com/containers/toolbox/pull/668
31 lines
539 B
Meson
31 lines
539 B
Meson
go_md2man_command = [
|
|
go_md2man,
|
|
'-in', '@INPUT@',
|
|
'-out', '@OUTPUT@',
|
|
]
|
|
|
|
manuals = [
|
|
'toolbox.1',
|
|
'toolbox-create.1',
|
|
'toolbox-enter.1',
|
|
'toolbox-init-container.1',
|
|
'toolbox-help.1',
|
|
'toolbox-list.1',
|
|
'toolbox-rm.1',
|
|
'toolbox-rmi.1',
|
|
'toolbox-run.1',
|
|
]
|
|
|
|
foreach manual: manuals
|
|
input = manual + '.md'
|
|
output = manual
|
|
|
|
custom_target(
|
|
output,
|
|
command: go_md2man_command,
|
|
input: input,
|
|
install: true,
|
|
install_dir: join_paths(get_option('mandir'), 'man1'),
|
|
output: output,
|
|
)
|
|
endforeach
|