NetworkManager/meson_post_install.py
Iñigo Martínez 03637ad8b5 build: add initial support for meson build system
meson is a build system focused on speed an ease of use, which
helps speeding up the software development. This patch adds meson
support along autotools.

[thaller@redhat.com: rebased patch and adjusted for iwd support]

https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00022.html
2017-12-13 15:48:50 +01:00

47 lines
1.5 KiB
Python

#!/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)