18 lines
496 B
Meson
18 lines
496 B
Meson
runit_config_data = configuration_data()
|
|
runit_config_data.set('LIBEXECDIR', join_paths(get_option('prefix'), get_option('libexecdir'), meson.project_name()))
|
|
|
|
runit_config_data_file = configure_file(
|
|
input: 'run.in',
|
|
output: 'run',
|
|
configuration: runit_config_data
|
|
)
|
|
|
|
runit = find_program ('runit', required: false)
|
|
|
|
if runit.found()
|
|
install_data(
|
|
runit_config_data_file,
|
|
install_dir: join_paths(get_option('sysconfdir'), 'runit', 'sv', 'tufmanager')
|
|
)
|
|
endif
|