36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2013-2020 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 Cleverleaf(CMakePackage):
|
|
"""CleverLeaf is a hydrodynamics mini-app that extends CloverLeaf with
|
|
Adaptive Mesh Refinement using the SAMRAI toolkit from Lawrence
|
|
Livermore National Laboratory. The primary goal of CleverLeaf is
|
|
to evaluate the application of AMR to the Lagrangian-Eulerian
|
|
hydrodynamics scheme used by CloverLeaf.
|
|
"""
|
|
|
|
homepage = "http://uk-mac.github.io/CleverLeaf/"
|
|
git = "https://github.com/UK-MAC/CleverLeaf_ref.git"
|
|
|
|
version('develop', branch='develop')
|
|
|
|
depends_on('samrai@3.8.0:')
|
|
depends_on('hdf5+mpi')
|
|
depends_on('boost')
|
|
depends_on('cmake@3.1:', type='build')
|
|
|
|
# The Fujitsu compiler requires the '--linkfortran'
|
|
# option to combine C++ and Fortran programs.
|
|
patch('fujitsu_add_link_flags.patch', when='%fj')
|
|
|
|
def flag_handler(self, name, flags):
|
|
if self.spec.satisfies('%intel') and name in ['cppflags', 'cxxflags']:
|
|
flags.append(self.compiler.cxx11_flag)
|
|
|
|
return (None, None, flags)
|