File: meson.build

package info (click to toggle)
systemd 259-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 105,132 kB
  • sloc: ansic: 726,480; xml: 121,118; python: 36,740; sh: 35,016; cpp: 946; makefile: 273; awk: 102; lisp: 13; sed: 1
file content (67 lines) | stat: -rw-r--r-- 2,596 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# SPDX-License-Identifier: LGPL-2.1-or-later

bashcompletiondir = get_option('bashcompletiondir')
if bashcompletiondir == 'no'
        subdir_done()
elif bashcompletiondir == ''
        bash_completion = dependency('bash-completion', required : false)
        if bash_completion.found()
                bashcompletiondir = bash_completion.get_variable(pkgconfig : 'completionsdir')
        else
                bashcompletiondir = datadir / 'bash-completion/completions'
        endif
endif

custom_target(
        input : 'systemctl.in',
        output : 'systemctl',
        command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'],
        install : true,
        install_dir : bashcompletiondir)

foreach item : [
        ['bootctl',             ''],
        ['busctl',              ''],
        ['coredumpctl',         'ENABLE_COREDUMP'],
        ['homectl',             'ENABLE_HOMED'],
        ['hostnamectl',         'ENABLE_HOSTNAMED'],
        ['importctl',           'ENABLE_IMPORTD'],
        ['journalctl',          ''],
        ['kernel-install',      'ENABLE_KERNEL_INSTALL'],
        ['localectl',           'ENABLE_LOCALED'],
        ['loginctl',            'ENABLE_LOGIND'],
        ['machinectl',          'ENABLE_MACHINED'],
        ['networkctl',          'ENABLE_NETWORKD'],
        ['oomctl',              'ENABLE_OOMD'],
        ['portablectl',         'ENABLE_PORTABLED'],
        ['resolvectl',          'ENABLE_RESOLVE'],
        ['run0',                ''],
        ['systemd-analyze',     ''],
        ['systemd-cat',         ''],
        ['systemd-cgls',        ''],
        ['systemd-cgtop',       ''],
        ['systemd-confext',     'ENABLE_SYSEXT'],
        ['systemd-creds',       ''],
        ['systemd-cryptenroll', 'HAVE_LIBCRYPTSETUP'],
        ['systemd-delta',       ''],
        ['systemd-detect-virt', ''],
        ['systemd-dissect',     'HAVE_BLKID'],
        ['systemd-id128',       ''],
        ['systemd-nspawn',      'ENABLE_NSPAWN'],
        ['systemd-path',        ''],
        ['systemd-resolve',     'ENABLE_RESOLVE'],
        ['systemd-run',         ''],
        ['systemd-sysext',      'ENABLE_SYSEXT'],
        ['systemd-vmspawn',     'ENABLE_VMSPAWN'],
        ['systemd-vpick',       ''],
        ['timedatectl',         'ENABLE_TIMEDATED'],
        ['udevadm',             ''],
        ['userdbctl',           'ENABLE_USERDB'],
        ['varlinkctl',          ''],
]

        if item[1] == '' or conf.get(item[1]) == 1
                install_data(item[0],
                             install_dir : bashcompletiondir)
        endif
endforeach