diff options
author | Edward Hartnett <38856240+edwardhartnett@users.noreply.github.com> | 2021-09-24 11:44:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 11:44:09 -0600 |
commit | 2c9dfcabf8aa530b6c5bdb35bd1862ef6eed4c68 (patch) | |
tree | 956764a874bf9ef096373f84b40f0e96936bb7a6 | |
parent | 1a0e1597c813db0dfae77d58c25eaf35c4cb4b68 (diff) | |
download | spack-2c9dfcabf8aa530b6c5bdb35bd1862ef6eed4c68.tar.gz spack-2c9dfcabf8aa530b6c5bdb35bd1862ef6eed4c68.tar.bz2 spack-2c9dfcabf8aa530b6c5bdb35bd1862ef6eed4c68.tar.xz spack-2c9dfcabf8aa530b6c5bdb35bd1862ef6eed4c68.zip |
added NOAA package prod_util (#26197)
-rw-r--r-- | var/spack/repos/builtin/packages/prod-util/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/prod-util/package.py b/var/spack/repos/builtin/packages/prod-util/package.py new file mode 100644 index 0000000000..69e7422d1e --- /dev/null +++ b/var/spack/repos/builtin/packages/prod-util/package.py @@ -0,0 +1,22 @@ +# Copyright 2013-2021 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 ProdUtil(CMakePackage): + """ + Product utilities for the NCEP models. + + This is part of NOAA's NCEPLIBS project.""" + + homepage = "https://github.com/NOAA-EMC/NCEPLIBS-prod_util" + url = "https://github.com/NOAA-EMC/NCEPLIBS-prod_util/archive/refs/tags/v1.2.2.tar.gz" + + maintainers = ['kgerheiser', 'Hang-Lei-NOAA', 'edwardhartnett'] + + version('1.2.2', sha256='c51b903ea5a046cb9b545b5c04fd28647c58b4ab6182e61710f0287846350ef8') + + depends_on('w3nco') |