NetworkManager/tools/meson-post-install.sh
Thomas Haller 21845ae4e3 build/meson: cleanup "meson-post-install.sh"
- the variables in meson.build and in the meson-post-install.sh script
  should have the same names.

- the positional command line arguments should be assigned to variables,
  because the variable name acts like a documentation what the variable
  means (contrary to the argument number).

- the boolean flags should not map to other special values, like
  "enable_docs ? 'install_docs' : ''". The name "enable_docs" is
  good already, it shall be either passed as 1 or 0 and use the name
  consistently.
2019-11-22 16:07:02 +01:00

57 lines
1.8 KiB
Bash
Executable file

#!/bin/sh
nm_datadir="$1"
nm_bindir="$2"
nm_pkgconfdir="$3"
nm_pkglibdir="$4"
nm_pkgstatedir="$5"
nm_mandir="$6"
nm_sysconfdir="$7"
enable_docs="$8"
enable_ifcfg_rh="$9"
[ -n "$DESTDIR" ] && DESTDIR="${DESTDIR%%/}/"
if [ -f "${DESTDIR}${nm_datadir}/bash-completion/completions/nmcli-completion" ]; then
mv "${DESTDIR}${nm_datadir}/bash-completion/completions/nmcli-completion" \
"${DESTDIR}${nm_datadir}/bash-completion/completions/nmcli"
fi
if [ -x "${DESTDIR}${nm_bindir}/nmtui" ]; then
for alias in nmtui-connect nmtui-edit nmtui-hostname; do
ln -sf nmtui "${DESTDIR}${nm_bindir}/$alias"
done
fi
for dir in "${nm_pkgconfdir}/conf.d" \
"${nm_pkgconfdir}/system-connections" \
"${nm_pkgconfdir}/dispatcher.d/no-wait.d" \
"${nm_pkgconfdir}/dispatcher.d/pre-down.d" \
"${nm_pkgconfdir}/dispatcher.d/pre-up.d" \
"${nm_pkgconfdir}/dnsmasq.d" \
"${nm_pkgconfdir}/dnsmasq-shared.d" \
"${nm_pkglibdir}/conf.d" \
"${nm_pkglibdir}/dispatcher.d/no-wait.d" \
"${nm_pkglibdir}/dispatcher.d/pre-down.d" \
"${nm_pkglibdir}/dispatcher.d/pre-up.d" \
"${nm_pkglibdir}/system-connections" \
"${nm_pkglibdir}/VPN"; do
mkdir -p "${DESTDIR}${dir}"
chmod 0755 "${DESTDIR}${dir}"
done
mkdir -p "${DESTDIR}${nm_pkgstatedir}"
chmod 0700 "${DESTDIR}${nm_pkgstatedir}"
if [ "$enable_docs" = 1 ]; then
for alias in nmtui-connect nmtui-edit nmtui-hostname; do
ln -f "${DESTDIR}${nm_mandir}/man1/nmtui.1" "${DESTDIR}${nm_mandir}/man1/${alias}.1"
done
ln -f "${DESTDIR}${nm_mandir}/man5/NetworkManager.conf.5" "${DESTDIR}${nm_mandir}/man5/nm-system-settings.conf.5"
fi
if [ "$enable_ifcfg_rh" = 1 ]; then
mkdir -p "${DESTDIR}${nm_sysconfdir}/sysconfig/network-scripts"
fi