1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-30 00:44:52 +02:00
qmckl/tools/build_doc.sh

133 lines
2.5 KiB
Bash
Raw Normal View History

2021-03-23 22:23:49 +01:00
#!/bin/bash
# Script to build the documentation
# :PROPERTIES:
# :header-args:bash: :tangle build_doc.sh :noweb yes :shebang #!/bin/bash :comments org
# :END:
2021-03-10 12:58:38 +01:00
2021-03-23 22:23:49 +01:00
# First define readonly global variables.
2021-03-10 12:58:38 +01:00
2021-03-23 22:23:49 +01:00
readonly DOCS=${QMCKL_ROOT}/docs/
readonly SRC=${QMCKL_ROOT}/src/
readonly HTMLIZE=${DOCS}/htmlize.el
readonly CONFIG_DOC=${QMCKL_ROOT}/tools/config_doc.el
readonly CONFIG_TANGLE=${QMCKL_ROOT}/tools/config_tangle.el
2021-03-10 12:58:38 +01:00
2021-03-23 22:23:49 +01:00
# Check that all the defined global variables correspond to files.
function check_preconditions()
{
if [[ -z ${QMCKL_ROOT} ]]
then
print "QMCKL_ROOT is not defined"
exit 1
fi
for dir in ${DOCS} ${SRC}
do
if [[ ! -d ${dir} ]]
then
print "${dir} not found"
exit 2
fi
done
for file in ${CONFIG_DOC} ${CONFIG_TANGLE}
do
if [[ ! -f ${file} ]]
then
print "${file} not found"
exit 3
fi
done
}
# ~install_htmlize~ installs the htmlize Emacs plugin if the
# =htmlize.el= file is not present.
function install_htmlize()
{
local url="https://github.com/hniksic/emacs-htmlize"
local repo="emacs-htmlize"
[[ -f ${HTMLIZE} ]] || (
cd ${DOCS}
git clone ${url} \
&& cp ${repo}/htmlize.el ${HTMLIZE} \
&& rm -rf ${repo}
cd -
)
# Assert htmlize is installed
[[ -f ${HTMLIZE} ]] \
|| exit 1
}
# Extract documentation from an org-mode file.
2021-03-10 12:58:38 +01:00
function extract_doc()
{
2021-03-23 22:23:49 +01:00
local org=$1
local local_html=${SRC}/${org%.org}.html
local html=${DOCS}/${org%.org}.html
if [[ -f ${html} && ${org} -ot ${html} ]]
then
return
2021-03-10 12:58:38 +01:00
fi
2021-03-23 22:23:49 +01:00
emacs --batch \
--load ${HTMLIZE} \
--load ${CONFIG_DOC} \
${org} \
--load ${CONFIG_TANGLE} \
-f org-html-export-to-html
mv ${local_html} ${DOCS}
2021-03-10 12:58:38 +01:00
}
2021-03-23 22:23:49 +01:00
# The main function of the script.
2021-03-10 12:58:38 +01:00
2021-03-23 22:23:49 +01:00
function main() {
[[ check_preconditions ]] \
|| exit 1
# Install htmlize if needed
[[ install_htmlize ]] \
|| exit 2
# Create documentation
cd ${SRC} \
|| exit 3
for i in *.org
do
echo
echo "======= ${i} ======="
extract_doc ${i}
done
if [[ $? -eq 0 ]]
then
cd ${DOCS}
rm -f index.html
ln README.html index.html
exit 0
else
exit 3
fi
}
main