summaryrefslogtreecommitdiff
path: root/meson_post_install.py
blob: 16dbc42b9565177abaaa28f60b708f17f2d90ada (plain)
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
#!/usr/bin/env python3

import os
import sys

if not os.environ.get('DESTDIR'):
  datadir = sys.argv[1]
  bindir = sys.argv[2]
  pkgconfdir = sys.argv[3]
  pkglibdir = sys.argv[4]
  localstatedir = sys.argv[5]

  completions_dir = os.path.join(datadir, 'bash-completion', 'completions')
  os.rename(os.path.join(completions_dir, 'nmcli-completion'), os.path.join(completions_dir, 'nmcli'))

  nmtui_alias = ['nmtui-connect', 'nmtui-edit', 'nmtui-hostname']
  src = os.path.join(bindir, 'nmtui')
  [os.symlink(src, os.path.join(bindir, dst))
   for dst in nmtui_alias]

  dst_dirs = [
    os.path.join(pkgconfdir, 'conf.d'),
    os.path.join(pkgconfdir, 'system-connections'),
    os.path.join(pkgconfdir, 'dispatcher.d', 'no-wait.d'),
    os.path.join(pkgconfdir, 'dispatcher.d', 'pre-down.d'),
    os.path.join(pkgconfdir, 'dispatcher.d', 'pre-up.d'),
    os.path.join(pkgconfdir, 'dnsmasq.d'),
    os.path.join(pkgconfdir, 'dnsmasq-shared.d'),
    os.path.join(pkglibdir, 'conf.d'),
    os.path.join(pkglibdir, 'VPN'),
    os.path.join(localstatedir, 'lib', 'NetworkManager')
  ]
  [os.makedirs(dst_dir)
   for dst_dir in dst_dirs
   if not os.path.exists(dst_dir)]

  if sys.argv[6] == 'install_docs':
    mandir = sys.argv[7]

    src = os.path.join(mandir, 'man1', 'nmtui.1')
    [os.symlink(src, os.path.join(mandir, 'man1', dst + '.1'))
     for dst in nmtui_alias]

    src = os.path.join(mandir, 'man5', 'NetworkManager.conf.5')
    dst = os.path.join(mandir, 'man5', 'nm-system-settings.conf.5')
    os.symlink(src, dst)