neofoam: new package (#47214)

* add neofoam package.py

* add Henning as second maintainer

* format file

* fixup! SPDX License entry

* Apply suggestions from code review

Co-authored-by: Wouter Deconinck <wdconinc@gmail.com>

* Update var/spack/repos/builtin/packages/neofoam/package.py

Co-authored-by: Wouter Deconinck <wdconinc@gmail.com>

---------

Co-authored-by: Wouter Deconinck <wdconinc@gmail.com>
This commit is contained in:
Gregor Olenik 2025-02-18 18:13:43 +01:00 committed by GitHub
parent 1a1f0aa07b
commit f0e5568a54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,23 @@
# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class Neofoam(CMakePackage):
"""NeoFOAM is a WIP prototype of a modern CFD core."""
homepage = "https://github.com/exasim-project/NeoFOAM"
git = "https://github.com/exasim-project/NeoFOAM.git"
maintainers("greole", "HenningScheufler")
license("MIT", checked_by="greole")
version("main", branch="main")
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("mpi")
depends_on("kokkos@4.3.0")