diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/millepede/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/millepede/package.py b/var/spack/repos/builtin/packages/millepede/package.py new file mode 100644 index 0000000000..4da4e4d1e2 --- /dev/null +++ b/var/spack/repos/builtin/packages/millepede/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2022 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 import * + + +class Millepede(MakefilePackage): + """Millepede II is a package for linear least squares fits + with a large number of parameters. Developed for the + alignment and calibration of tracking detectors.""" + + homepage = "https://gitlab.desy.de/claus.kleinwort/millepede-ii" + url = "https://gitlab.desy.de/claus.kleinwort/millepede-ii/-/archive/V04-11-01/millepede-ii-V04-11-01.tar.gz" + + maintainers = ['iarspider'] + + parallel = False + + version('04-11-01', sha256='9869eb84d8d07cecfab15c396f3faa36aef10906e39f8641c48b58e0325b3205') + + depends_on('zlib') |