blob: d41e234c938d159530f4b7058af8cf07cf1a21a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/bash
# SPDX-License-Identifier: GPL-3.0-or-later
cd "$(dirname ${0})/.."
pushd doc
doxygen
popd
SPHINX=$(command -v sphinx-build-3)
if [ $? -ne 0 ]; then
SPHINX=$(command -v sphinx-build)
fi
set -o errexit -o nounset
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
|