Skip to content
Snippets Groups Projects
Commit ef5c973c authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Merge pull request #688 from davydden/doxygen_fix

doxygen: add missing dependencies
parents 35322ecc 9e9f5d01
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
from spack import * from spack import *
import sys
class Doxygen(Package): class Doxygen(Package):
"""Doxygen is the de facto standard tool for generating documentation """Doxygen is the de facto standard tool for generating documentation
...@@ -17,6 +18,10 @@ class Doxygen(Package): ...@@ -17,6 +18,10 @@ class Doxygen(Package):
version('1.8.10', '79767ccd986f12a0f949015efb5f058f') version('1.8.10', '79767ccd986f12a0f949015efb5f058f')
depends_on("cmake@2.8.12:") depends_on("cmake@2.8.12:")
# flex does not build on OSX, but it's provided there anyway
depends_on("flex", sys.platform != 'darwin')
depends_on("bison", sys.platform != 'darwin')
def install(self, spec, prefix): def install(self, spec, prefix):
cmake('.', *std_cmake_args) cmake('.', *std_cmake_args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment