diff options
author | eugeneswalker <38933153+eugeneswalker@users.noreply.github.com> | 2023-04-28 06:31:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 04:31:06 -0700 |
commit | eacf11e6cc66318ac3c504f78ade66f56a42ffbd (patch) | |
tree | 618799449a12ac814ba117daf33fada21ef107bc /var | |
parent | 7bd987aa5b4e982373a229cd0e5da208278012cd (diff) | |
download | spack-eacf11e6cc66318ac3c504f78ade66f56a42ffbd.tar.gz spack-eacf11e6cc66318ac3c504f78ade66f56a42ffbd.tar.bz2 spack-eacf11e6cc66318ac3c504f78ade66f56a42ffbd.tar.xz spack-eacf11e6cc66318ac3c504f78ade66f56a42ffbd.zip |
new package: xtcdata (#37261)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/xtcdata/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/xtcdata/package.py b/var/spack/repos/builtin/packages/xtcdata/package.py new file mode 100644 index 0000000000..6e6beca19a --- /dev/null +++ b/var/spack/repos/builtin/packages/xtcdata/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2023 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 Xtcdata(CMakePackage): + """LCLS II Developement: XTCData.""" + + homepage = "https://github.com/slac-lcls/lcls2" + url = "https://github.com/slac-lcls/lcls2/archive/refs/tags/3.3.37.tar.gz" + + maintainers = ["valmar"] + + version("3.3.37", sha256="127a5ae44c9272039708bd877849a3af354ce881fde093a2fc6fe0550b698b72") + + root_cmakelists_dir = "xtcdata" |