File: meson.build

package info (click to toggle)
mutter 49.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,784 kB
  • sloc: ansic: 398,618; xml: 3,384; python: 3,270; sh: 389; ruby: 167; makefile: 61; javascript: 26
file content (21 lines) | stat: -rw-r--r-- 498 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
install_man('mutter.1')

rst2man = find_program('rst2man')

custom_target('gdctl.1',
  input: 'gdctl.rst',
  output: 'gdctl.1',
  command: [rst2man, '--syntax-highlight=none', '@INPUT@'],
  capture: true,
  install_dir: mandir + '/man1',
  install: true
)

custom_target('gnome-service-client.1',
  input: 'gnome-service-client.rst',
  output: 'gnome-service-client.1',
  command: [rst2man, '--syntax-highlight=none', '@INPUT@'],
  capture: true,
  install_dir: mandir + '/man1',
  install: true
)