40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Aspect(CMakePackage):
|
|
"""Parallel, extendible finite element code to simulate convection in the
|
|
Earth's mantle and elsewhere."""
|
|
|
|
homepage = "https://aspect.geodynamics.org"
|
|
url = "https://github.com/geodynamics/aspect/releases/download/v2.0.0/aspect-2.0.0.tar.gz"
|
|
git = "https://github.com/geodynamics/aspect.git"
|
|
|
|
maintainers = ['tjhei']
|
|
|
|
version('develop', branch='master')
|
|
version('2.0.1', sha256='0bf5600c42afce9d39c1d285b0654ecfdeb0f30e9f3421651c95f54ca01ac165')
|
|
version('2.0.0', sha256='d485c07f54248e824bdfa35f3eec8971b65e8b7114552ffa2c771bc0dede8cc0')
|
|
|
|
variant('build_type', default='Release',
|
|
description='The build type to build',
|
|
values=('Debug', 'Release'))
|
|
variant('gui', default=False, description='Enable the deal.II parameter GUI')
|
|
variant('fpe', default=False, description='Enable floating point exception checks')
|
|
|
|
depends_on('dealii+p4est+trilinos+mpi')
|
|
depends_on('dealii-parameter-gui', when='+gui')
|
|
|
|
def cmake_args(self):
|
|
return [
|
|
'-DASPECT_USE_FP_EXCEPTIONS=%s' %
|
|
('ON' if '+fpe' in self.spec else 'OFF')
|
|
]
|
|
|
|
def setup_environment(self, spack_env, run_env):
|
|
run_env.set('Aspect_DIR', self.prefix)
|