File: meson.build

package info (click to toggle)
network-manager-applet 1.36.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 22,512 kB
  • sloc: ansic: 34,599; sh: 5,052; makefile: 535; xml: 43; python: 17; sed: 16
file content (18 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mans = [
  'nm-applet.1',
  'nm-connection-editor.1'
]

man1_dir = join_paths(nma_mandir, 'man1')

man_subst = configuration_data()
man_subst.set('VERSION', nm_applet_version)

foreach man: mans
  configure_file(
    input: man + '.in',
    output: man,
    install_dir: man1_dir,
    configuration: man_subst,
  )
endforeach