2020-04-06 08:02:27 +00:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
class DuneNewmodule(CMakePackage):
|
|
|
|
"""Abstractions for functions and discrete function space bases"""
|
|
|
|
|
|
|
|
|
|
|
|
homepage = "https://www.dune-project.org"
|
|
|
|
url = "https://gitlab.dune-project.org/staging/"
|
|
|
|
list_url = 'https://gitlab.dune-project.org/staging/dune-functions/-/archive/releases/'
|
|
|
|
list_depth = 1
|
|
|
|
|
|
|
|
version('2.7', sha256='0')
|
|
|
|
|
|
|
|
|
|
|
|
#option
|
|
|
|
|
|
|
|
#dependencies
|
2020-05-10 19:21:48 +00:00
|
|
|
depends_on('dune',type=('build', 'link', 'run'))
|
2020-04-06 08:02:27 +00:00
|
|
|
|
|
|
|
depends_on('cmake@3.1:', type='build')
|
|
|
|
|