diff options
author | Jim Edwards <jedwards@ucar.edu> | 2023-11-27 14:02:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 14:02:04 -0700 |
commit | 8ccfe9f710a440a6e0b2f523816d13aa8dac4482 (patch) | |
tree | bf8deeb9425cb9c30dc0f4c2971e09ea4bddc89e | |
parent | abc294e3a2334f5752cba4b65bb2c44bab2b00d2 (diff) | |
download | spack-8ccfe9f710a440a6e0b2f523816d13aa8dac4482.tar.gz spack-8ccfe9f710a440a6e0b2f523816d13aa8dac4482.tar.bz2 spack-8ccfe9f710a440a6e0b2f523816d13aa8dac4482.tar.xz spack-8ccfe9f710a440a6e0b2f523816d13aa8dac4482.zip |
cprnc: add new package (#41237)
-rw-r--r-- | var/spack/repos/builtin/packages/cprnc/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cprnc/package.py b/var/spack/repos/builtin/packages/cprnc/package.py new file mode 100644 index 0000000000..190c375d69 --- /dev/null +++ b/var/spack/repos/builtin/packages/cprnc/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2023 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 Cprnc(CMakePackage): + """CPRNC is a netcdf file comparison tool used by CESM + and other scientific programs.""" + + url = "https://github.com/ESMCI/cprnc/archive/refs/tags/v1.0.1.tar.gz" + homepage = "https://github.com/ESMCI/cprnc" + + maintainers("jedwards4b", "billsacks") + + version("1.0.1", sha256="19517b52688f5ce40c385d7a718e06bf88a8731335943bc32e2b8410c489d6eb") + + depends_on("netcdf-fortran") + depends_on("cmake@3:", type="build") |