File: meson.build

package info (click to toggle)
endeavour 43.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,396 kB
  • sloc: ansic: 23,899; xml: 134; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
appdata_conf = configuration_data()
appdata_conf.set('appid', application_id)
appdata = i18n.merge_file(
  type: 'xml',
  input: configure_file(
    input: 'org.gnome.Todo.appdata.xml.in.in',
    output: 'org.gnome.Todo.appdata.xml.in',
    configuration: appdata_conf
  ),
  output: '@0@.appdata.xml'.format(application_id),
  po_dir: po_dir,
  install: true,
  install_dir: join_paths(endeavour_datadir, 'metainfo')
)