add groff and ghostscript (#18803)

Without these packages, graphviz will set groff/ghostscript to false which will cause the build to fail.
This commit is contained in:
Joseph Wang 2020-09-21 23:39:13 +08:00 committed by GitHub
parent 678e9f5ad2
commit 88187bc63c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,6 +117,9 @@ class Graphviz(AutotoolsPackage):
depends_on('bison', type='build')
depends_on('flex', type='build')
depends_on('libtool', type='build')
# required to build docs
depends_on('groff', type='build')
depends_on('ghostscript', type='build')
parallel = False