1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
artsearch_plugin_dir = plugindir + '/artsearch'
artsearch_plugin_files = [
'artsearch.py',
'songinfo.py',
'embedded.py',
'lastfm.py',
'local.py',
'musicbrainz.py',
'oldcache.py']
install_data(artsearch_plugin_files,
install_dir: artsearch_plugin_dir)
artsearch_plugin_descriptor = custom_target('artsearch-plugin-descriptor',
input: 'artsearch.plugin.desktop.in',
output: 'artsearch.plugin',
command: msgfmt_plugin_cmd,
install: true,
install_dir: artsearch_plugin_dir)
|