asciidoc: add autotools dependencies (#27418)

This commit is contained in:
Glenn Johnson 2021-11-15 04:13:00 -06:00 committed by GitHub
parent 9171d56146
commit d1df044b42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,9 @@ class Asciidoc(AutotoolsPackage):
depends_on('docbook-xsl', type=('build', 'run')) depends_on('docbook-xsl', type=('build', 'run'))
depends_on('python@2.3.0:2.7', when='@:8.6.9', type=('build', 'run')) depends_on('python@2.3.0:2.7', when='@:8.6.9', type=('build', 'run'))
depends_on('python@3.5:', when='@9.0.2:', type=('build', 'run')) depends_on('python@3.5:', when='@9.0.2:', type=('build', 'run'))
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
@when('@:8.6.9') @when('@:8.6.9')
def install(self, spec, prefix): def install(self, spec, prefix):