1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2013-2022 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 Landsfcutil(CMakePackage):
"""Utility routines useful for initializing land-surface states in
NCEP models.
This is part of NOAA's NCEPLIBS project."""
homepage = "https://github.com/NOAA-EMC/NCEPLIBS-landsfcutil"
url = "https://github.com/NOAA-EMC/NCEPLIBS-landsfcutil/archive/refs/tags/v2.4.1.tar.gz"
maintainers = ["edwardhartnett", "kgerheiser", "Hang-Lei-NOAA"]
version("2.4.1", sha256="831c5005a480eabe9a8542b4deec838c2650f6966863ea2711cc0cc5db51ca14")
def setup_run_environment(self, env):
for suffix in ("4", "d"):
lib = find_libraries(
"liblandsfcutil_" + suffix, root=self.prefix, shared=False, recursive=True
)
env.set("LANDSFCUTIL_LIB" + suffix, lib[0])
env.set("LANDSFCUTIL_INC" + suffix, join_path(self.prefix, "include_" + suffix))
def flag_handler(self, name, flags):
if self.spec.satisfies("%fj"):
if name == "fflags":
flags.append("-Free")
return (None, None, flags)
|