File: meson.build

package info (click to toggle)
jack-example-tools 4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 900 kB
  • sloc: ansic: 10,030; cpp: 2,295; makefile: 9; sh: 2
file content (41 lines) | stat: -rw-r--r-- 785 bytes parent folder | download
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
32
33
34
35
36
37
38
39
40
41
man_pages = [
  'jack_bufsize',
  'jack_connect',
  'jack_disconnect',
  'jack_freewheel',
  'jack_impulse_grabber',
  'jack_iodelay',
  'jack_load',
  'jack_lsp',
  'jack_metro',
  'jack_monitor_client',
  'jack_property',
  'jack_samplerate',
  'jack_showtime',
  'jack_simple_client',
  'jack_transport',
  'jack_unload',
  'jack_wait',
]

if build_alsa_in_out
  man_pages += ['alsa_in', 'alsa_out']
endif
if build_jack_netsource
  man_pages += ['jack_netsource']
endif
if build_jack_rec
  man_pages += ['jack_rec']
endif

if os != 'windows'
  foreach man_page: man_pages
    configure_file(
      configuration: conf_data,
      input: man_page + '.0',
      output: man_page + '.1',
      install_dir: get_option('mandir') + '/man1',
      install: true,
    )
  endforeach
endif