80 lines
2.7 KiB
Python
80 lines
2.7 KiB
Python
# Copyright 2013-2024 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.package import *
|
|
|
|
|
|
class Citcoms(AutotoolsPackage):
|
|
"""CitcomS is a finite element code designed to solve compressible
|
|
thermochemical convection problems relevant to Earth's mantle."""
|
|
|
|
homepage = "https://geodynamics.org/cig/software/citcoms/"
|
|
url = "https://github.com/geodynamics/citcoms/releases/download/v3.3.1/CitcomS-3.3.1.tar.gz"
|
|
git = "https://github.com/geodynamics/citcoms.git"
|
|
|
|
maintainers("adamjstewart")
|
|
|
|
license("GPL-2.0-or-later")
|
|
|
|
version("master", branch="master", submodules=True)
|
|
version("3.3.1", sha256="e3520e0a933e4699d31e86fe309b8c154ea6ecb0f42a1cf6f25e8d13d825a4b3")
|
|
version("3.2.0", sha256="773a14d91ecbb4a4d1e04317635fab79819d83c57b47f19380ff30b9b19cb07a")
|
|
|
|
depends_on("c", type="build") # generated
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
variant("ggrd", default=False, description="use GGRD file support")
|
|
variant("cuda", default=False, description="use CUDA")
|
|
variant("hdf5", default=False, description="add HDF5 support")
|
|
|
|
# Required dependencies
|
|
depends_on("mpi")
|
|
depends_on("zlib-api")
|
|
depends_on("automake", when="@master", type="build")
|
|
depends_on("autoconf", when="@master", type="build")
|
|
depends_on("libtool", when="@master", type="build")
|
|
depends_on("m4", when="@master", type="build")
|
|
|
|
# Optional dependencies
|
|
depends_on("hc", when="+ggrd")
|
|
depends_on("cuda", when="+cuda")
|
|
depends_on("hdf5+mpi", when="+hdf5")
|
|
|
|
def setup_build_environment(self, env):
|
|
if self.spec.satisfies("+ggrd"):
|
|
env.set("HC_HOME", self.spec["hc"].prefix)
|
|
|
|
def configure_args(self):
|
|
args = ["CC={0}".format(self.spec["mpi"].mpicc)]
|
|
|
|
# Flags only valid in 3.2
|
|
if self.spec.satisfies("@:3.2"):
|
|
args.append("--without-pyre")
|
|
args.append("--without-exchanger")
|
|
|
|
if self.spec.satisfies("+ggrd"):
|
|
args.append("--with-ggrd")
|
|
else:
|
|
args.append("--without-ggrd")
|
|
|
|
if self.spec.satisfies("+cuda"):
|
|
args.append("--with-cuda")
|
|
else:
|
|
args.append("--without-cuda")
|
|
|
|
if self.spec.satisfies("+hdf5"):
|
|
args.extend(
|
|
[
|
|
"--with-hdf5",
|
|
# https://github.com/geodynamics/citcoms/issues/2
|
|
"CPPFLAGS=-DH5_USE_16_API",
|
|
"CFLAGS=-DH5_USE_16_API",
|
|
]
|
|
)
|
|
else:
|
|
args.append("--without-hdf5")
|
|
|
|
return args
|