mpdevil/src/meson.build

11 lines
332 B
Meson
Raw Normal View History

2021-12-29 18:48:42 +03:00
conf = configuration_data()
conf.set('RESOURCES_DIR', resources_dir)
2021-12-29 19:20:52 +03:00
conf.set('LOCALE_DIR', join_paths(get_option('prefix'), get_option('datadir'), 'locale'))
2021-12-29 16:03:25 +03:00
2021-12-29 18:48:42 +03:00
configure_file(
2021-12-30 03:23:29 +03:00
input: 'mpdevil.py',
2021-12-29 18:48:42 +03:00
output: 'mpdevil',
configuration: conf,
install_dir: join_paths(get_option('prefix'), get_option('bindir'))
)