# #graphviz - Graph visualization toolkit # #Relies on a bunch of third party packages (more than those listed here) which #it wants to obtain from inside CMake during the build (via the git submodule #mechanism). Horrible stuff... The CMake build script should be modified to #use the CMake FetchContent mechanism instead of relying on git directly. #However, the package maintainers seem to want to offer more build systems #than CMake and instead rely on git. # ExternalProject_Add ( graphviz PREFIX ${CMAKE_INSTALL_PREFIX} URL https://gitlab.com/graphviz/graphviz/-/archive/2.50.0/graphviz-2.50.0.zip URL_MD5 9de5d98214aedf1d48554927533f2c23 CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH= -DCMAKE_BUILD_TYPE:STRING=Release DEPENDS expat zlib awk bison flex python3 getopt gzip )