Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:27:55

0001 # Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
0002 # Spack Project Developers. See the top-level COPYRIGHT file for details.
0003 #
0004 # SPDX-License-Identifier: (Apache-2.0 OR MIT)
0005 
0006 from spack.package import *
0007 
0008 
0009 class Nanocernlib(CMakePackage):
0010     """nanocernlib is a collection of commonly used cernlib routines
0011     packaged with cmake to easily build on modern systems."""
0012 
0013     homepage = "https://github.com/sly2j/nanocernlib"
0014     url = "https://github.com/sly2j/nanocernlib/archive/v1.0.0.tar.gz"
0015     list_url = "https://github.com/sly2j/nanocernlib/releases"
0016     git = "https://github.com/sly2j/nanocernlib.git"
0017 
0018     tags = ["eic"]
0019 
0020     version("master", branch="master")
0021     version(
0022         "1.0.0",
0023         sha256="00b23d2613272951c1771d917ec0a7c30920e9d114caf1b421c44a806a06356a",
0024     )
0025 
0026     depends_on("fortran", type="build")
0027     depends_on("cmake", type="build")