File: meson.build

package info (click to toggle)
rhythmbox 3.4.9-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 27,376 kB
  • sloc: ansic: 114,861; python: 4,941; xml: 730; javascript: 350; perl: 307; sh: 84; makefile: 43
file content (31 lines) | stat: -rw-r--r-- 856 bytes parent folder | download | duplicates (4)
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
webremote_plugin_dir = plugindir + '/webremote'
webremote_plugin_data_dir = plugindatadir + '/webremote'

webremote_plugin_files = [
  'webremote.py',
  'siphash.py',]

install_data(webremote_plugin_files,
  install_dir: webremote_plugin_dir)

webremote_plugin_descriptor = custom_target('webremote-plugin-descriptor',
  input: 'webremote.plugin.desktop.in',
  output: 'webremote.plugin',
  command: msgfmt_plugin_cmd,
  install: true,
  install_dir: webremote_plugin_dir)

install_data([
  'css/grids-responsive-min.css',
  'css/pure-min.css',
  'css/webremote.css'],
  install_dir: webremote_plugin_data_dir + '/css')

install_data('js/webremote.js',
  install_dir: webremote_plugin_data_dir + '/js')

install_data('webremote.html',
  install_dir: webremote_plugin_data_dir)

install_data('webremote-config.ui',
  install_dir: webremote_plugin_data_dir)