Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-30 07:48:31

0001 from spack.package import *
0002 from spack_repo.builtin.build_systems.cmake import CMakePackage
0003 
0004 
0005 class East(CMakePackage):
0006     """Project eAST is a eA simulation toolkit."""
0007 
0008     homepage = "https://github.com/eic/east"
0009     url = "https://github.com/eic/east"
0010     list_url = "https://github.com/eic/east/releases"
0011     git = "https://github.com/eic/east.git"
0012 
0013     maintainers = ["wdconinc"]
0014 
0015     tags = ["eic"]
0016 
0017     version("main", branch="main")
0018 
0019     depends_on("c", type="build")
0020     depends_on("cxx", type="build")
0021 
0022     depends_on("geant4@10.7.0: +threads")
0023     depends_on("hepmc3")