spack/var/spack/repos/builtin/packages/quinoa/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

38 lines
1.1 KiB
Python

# Copyright 2013-2018 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 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"
git = "https://github.com/quinoacomputing/quinoa.git"
version('develop', branch='master')
depends_on('hdf5+mpi')
depends_on("charmpp backend=mpi")
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")
root_cmakelists_dir = 'src'