2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-07-07 17:11:53 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-07-07 17:11:53 +08:00
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Quinoa(CMakePackage):
|
|
|
|
"""Quinoa is a set of computational tools that enables research and
|
|
|
|
numerical analysis in fluid dynamics. At this time it is a test-bed
|
|
|
|
to experiment with various algorithms using fully asynchronous runtime
|
|
|
|
systems.
|
|
|
|
"""
|
|
|
|
|
|
|
|
homepage = "http://quinoacomputing.org"
|
2018-07-24 09:55:17 +08:00
|
|
|
git = "https://github.com/quinoacomputing/quinoa.git"
|
2017-07-07 17:11:53 +08:00
|
|
|
|
2018-07-24 09:55:17 +08:00
|
|
|
version('develop', branch='master')
|
2017-07-07 17:11:53 +08:00
|
|
|
|
|
|
|
depends_on('hdf5+mpi')
|
2018-09-15 08:01:07 +08:00
|
|
|
depends_on("charmpp backend=mpi")
|
2017-07-07 17:11:53 +08:00
|
|
|
depends_on("trilinos+exodus")
|
|
|
|
depends_on("boost")
|
|
|
|
depends_on("hypre~internal-superlu")
|
|
|
|
depends_on("random123")
|
|
|
|
depends_on("netlib-lapack+lapacke")
|
|
|
|
depends_on("mad-numdiff")
|
|
|
|
depends_on("h5part")
|
|
|
|
depends_on("boostmplcartesianproduct")
|
|
|
|
depends_on("tut")
|
|
|
|
depends_on("pugixml")
|
|
|
|
depends_on("pstreams")
|
|
|
|
depends_on("pegtl")
|
|
|
|
|
2017-07-19 00:58:19 +08:00
|
|
|
root_cmakelists_dir = 'src'
|