File: meson.build

package info (click to toggle)
rhythmbox 3.4.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,376 kB
  • sloc: ansic: 114,861; python: 4,941; xml: 730; javascript: 350; perl: 307; sh: 84; makefile: 43
file content (39 lines) | stat: -rw-r--r-- 955 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
context_plugin_dir = plugindir + '/context'
context_plugin_data_dir = plugindatadir + '/context'

context_plugin_files = [
  'AlbumTab.py',
  'ArtistTab.py',
  'ContextView.py',
  'LastFM.py',
  'LinksTab.py',
  'LyricsTab.py',
  'context.py'
]

install_data(context_plugin_files,
  install_dir: context_plugin_dir)

context_plugin_descriptor = custom_target('context-plugin-descriptor',
  input: 'context.plugin.desktop.in',
  output: 'context.plugin',
  command: msgfmt_plugin_cmd,
  install: true,
  install_dir: context_plugin_dir)

install_data([
  'tmpl/album-tmpl.html',
  'tmpl/artist-tmpl.html',
  'tmpl/loading.html',
  'tmpl/links-tmpl.html',
  'tmpl/lyrics-tmpl.html',
  'tmpl/main.css'],
  install_dir: context_plugin_data_dir / 'tmpl')

install_data([
  'img/lastfm.png',
  'img/spinner.gif',
  'img/links/Allmusic16x16.png',
  'img/links/Discogs16x16.png',
  'img/links/Wikipedia16x16.png'],
  install_dir: context_plugin_data_dir / 'img')