1
0
Fork 0
knot-resolver/scripts/make-doc.sh
Daniel Baumann fbc604e215
Adding upstream version 5.7.5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:17 +02:00

37 lines
1.1 KiB
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: GPL-3.0-or-later
set -o errexit -o nounset
cd "$(dirname "${0}")/.."
pushd doc
doxygen
popd
SPHINX=$(type -P sphinx-build-3 sphinx-build | head -n1)
rm -rf doc/html
"$SPHINX" "$@" -b html -d doc/.doctrees doc doc/html
if command -v makeinfo &>/dev/null; then
rm -rf doc/texinfo
${SPHINX} ${@} -b texinfo -d doc/.doctrees doc doc/texinfo
# Sphinx < 2 doesn't create a separate directory for figures, so if
# necessary move them to the correct location and update the references in
# the generated Texinfo file
if [ ! -d doc/texinfo/knot-resolver-figures ]; then
cd doc/texinfo
mkdir knot-resolver-figures
mv *.png *.svg knot-resolver-figures/
sed -e 's/\(@image{\)/\1knot-resolver-figures\//' \
knot-resolver.texi > knot-resolver.texi.tmp
mv knot-resolver.texi.tmp knot-resolver.texi
cd ../..
fi
make -C doc/texinfo info
mkdir doc/texinfo/.install
mv doc/texinfo/knot-resolver.info \
doc/texinfo/knot-resolver-figures \
doc/texinfo/.install/
fi