File: meson.build

package info (click to toggle)
gnome-shell-extension-appindicator 59-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 680 kB
  • sloc: javascript: 4,158; xml: 159; python: 55; makefile: 10
file content (13 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
schema_files = [
    run_command(jq, '-r', '."settings-schema"', metadata).stdout().strip() + '.gschema.xml',
    run_command(sh, '-c', ls_cmd.format('*.gschema.xml')).stdout().strip().split('\n'),
]

install_data(
  files(schema_files),
  install_dir: schema_dir
)

meson.add_install_script(sh.path(), '-c', ' '.join([
    'glib-compile-schemas $DESTDIR/@0@'.format(schema_dir),
]))