adsms/meson.build

14 lines
413 B
Meson
Raw Normal View History

2023-05-08 11:42:26 -07:00
project('adsms')
py = import('python').find_installation()
py.install_sources(
2023-05-08 15:17:06 -07:00
'adsms/__init__.py',
2023-05-09 11:17:47 -07:00
subdir: 'adsms',
2023-05-08 11:42:26 -07:00
)
install_data('run_adsms.py', install_dir: get_option('bindir'), rename: 'adsms')
2023-05-09 11:39:24 -07:00
install_data('adsms.service', install_dir: 'lib/systemd/system')
2023-05-09 11:57:27 -07:00
install_data('example_config.json', install_dir: 'etc', rename: 'adsms.json')
2023-05-19 12:40:46 -07:00
install_data('README.md', install_dir: 'usr/share/doc/adsms/')