Skip to content
Snippets Groups Projects
Commit 449bcc1a authored by Lars Bilke's avatar Lars Bilke
Browse files

[ogs] Install Doxygen from binary, Ubuntu package is outdated.

parent 00df8322
No related branches found
No related tags found
No related merge requests found
......@@ -551,7 +551,15 @@ if local_args.cppcheck:
)
if local_args.docs:
Stage0 += packages(ospackages=["doxygen", "graphviz", "texlive-base"])
Stage0 += packages(ospackages=["graphviz", "texlive-base"])
# doxygen package is out-dated, install Doxygen from binary
Stage0 += shell(
chdir="/tmp",
commands=[
"wget https://www.doxygen.nl/files/doxygen-1.9.6.linux.bin.tar.gz",
"tar xf doxygen-1.9.6.linux.bin.tar.gz -C /usr/local --strip-components=1",
],
)
Stage0 += pip(pip="pip3", packages=["lizard", "pandas"])
Stage0 += generic_cmake(
directory=f"cpp-dependencies-master",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment