File indexing completed on 2025-12-16 09:27:55
0001
0002
0003
0004
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")