Skip to content

Commit

Permalink
foam-extend, sundials: add cmake as a builddep
Browse files Browse the repository at this point in the history
The sundials doesn't use CMake directly, but it is referenced in the
patch step. I suspect it calls CMake somewhere else in its build system.
  • Loading branch information
mathstuf committed Jul 8, 2016
1 parent 088938f commit fea2e66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions var/spack/repos/builtin/packages/foam-extend/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class FoamExtend(Package):
depends_on('python')
depends_on('flex@:2.5.99')
depends_on('zlib')
depends_on('cmake', deptypes='build')

depends_on('scotch ~ metis', when='~ptscotch+scotch')
depends_on('scotch ~ metis + mpi', when='+ptscotch')
Expand Down
1 change: 1 addition & 0 deletions var/spack/repos/builtin/packages/sundials/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class Sundials(Package):
variant('openmp', default=False, description='Enable OpenMP support')
variant('pthread', default=True, description='Enable POSIX threads support')

depends_on('cmake', deptypes='build')
depends_on('mpi', when='+mpi')
depends_on('blas', when='+lapack')
depends_on('lapack', when='+lapack')
Expand Down

0 comments on commit fea2e66

Please sign in to comment.