Send SMS aircraft alerts based on ADS-B data
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
413 B

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')
install_data('example_config.json', install_dir: 'etc', rename: 'adsms.json')
install_data('README.md', install_dir: 'usr/share/doc/adsms/')