mu/build-aux/meson-install-info.sh

16 lines
379 B
Bash

#!/bin/sh
infodir=$1
infofile=$2
echo "DESTDIR: ${DESTDIR}" > boo.txt
echo "XX ${MESON_INSTALL_DESTDIR_PREFIX}" >> boo.txt
# Meson post-install script to update info metadata
install-info --info-dir ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir} \
${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile}
gzip --force ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile}