aboutsummaryrefslogtreecommitdiff
path: root/man/meson_man_links.sh
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2021-08-22 13:09:30 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2021-09-04 16:01:29 -0500
commitd6622a1156929294b909d08273fd227c7d817bb9 (patch)
tree29df9fc3ecae9e72e467effc91f3985eafaccd82 /man/meson_man_links.sh
parent92004a2ed65045b7ca79063dda8fc5b4ac761606 (diff)
add meson build files
Closes #116. Closes #171. Closes #172. Closes #175.
Diffstat (limited to 'man/meson_man_links.sh')
-rwxr-xr-xman/meson_man_links.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/man/meson_man_links.sh b/man/meson_man_links.sh
new file mode 100755
index 00000000..17c21a99
--- /dev/null
+++ b/man/meson_man_links.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+get_links() {
+ sed -e 's/ ,//g' \
+ -e '/^\.Sh NAME$/,/\.Sh/ s/\.Nm //p' \
+ -n ${MESON_SOURCE_ROOT}/man/${1}
+}
+
+MANDIR="$1"
+shift
+for man in $@; do
+ prefix=${man%%.*}
+ suffix=${man#*.}
+ links=$(get_links ${man})
+ for link in ${links}; do
+ if [ "${link}" != "${prefix}" ]; then
+ ln -sf ${man} ${MESON_INSTALL_DESTDIR_PREFIX}/${MANDIR}/man${suffix}/${link}.${suffix}
+ fi
+ done
+done