Back to home page

EIC code displayed by LXR

 
 

    


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

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 from spack_repo.builtin.build_systems.cmake import CMakePackage
0008 
0009 
0010 class Bmf(CMakePackage):
0011     """BeAST magnetic field map and a C++ class to handle it."""
0012 
0013     homepage = "https://github.com/eic/BeastMagneticField"
0014     url = "https://github.com/eic/BeastMagneticField"
0015     list_url = "https://github.com/eic/BeastMagneticField/releases"
0016     git = "https://github.com/eic/BeastMagneticField.git"
0017 
0018     maintainer = ["wdconinc"]
0019 
0020     tags = ["eic"]
0021 
0022     version("master", branch="master")
0023     version("2020-04-13", commit="d00c54dc812bfa1804acb5fe370bb9c27b3539f9")
0024 
0025     depends_on("cxx", type="build")
0026     depends_on("cmake@2.8.10:", type="build")