12 lines
272 B
Meson
12 lines
272 B
Meson
project('adsms')
|
|
|
|
py = import('python').find_installation()
|
|
|
|
py.install_sources(
|
|
'adsms/__init__.py',
|
|
subdir: 'adsms',
|
|
)
|
|
|
|
install_data('run_adsms.py', install_dir: get_option('bindir'), rename: 'adsms')
|
|
install_data('adsms.service', install_dir: 'lib/systemd/system')
|