File: meson.build

package info (click to toggle)
ghex 48.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,952 kB
  • sloc: ansic: 13,161; xml: 72; sh: 38; makefile: 7
file content (31 lines) | stat: -rw-r--r-- 734 bytes parent folder | download | duplicates (2)
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
#(cd C; for i in *.{page,xml}; do echo "  '$i',"; done;)
help_pages = [
  'advanced-clipboard.page',
  'advanced-marks.page',
  'basics-create-new-file.page',
  'basics-edit-file.page',
  'basics-find-replace.page',
  'basics-open-file.page',
  'basics-save-file.page',
  'conf-grouptype.page',
  'conf-preferences.page',
  'index.page',
  'tools-chartable.page',
  'tools-converter.page',
  'legal.xml',
]
# TODO: figures

gnome.yelp(
  meson.project_name(),
  sources: help_pages,
)

if get_option('static-html-help')
  custom_target('static-html-help',
    output : 'HTML',
    input : 'HTML.tar.gz',
    command : [find_program('tar'), 'xvf', '@INPUT@', '-C', '@OUTDIR@'],
    install : true,
    install_dir : ghex_docdir)
endif