diff options
author | Valentin Volkl <valentin.volkl@cern.ch> | 2022-06-27 23:08:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 21:08:02 +0000 |
commit | 614a014948b5ff5b96ded1a5bd41bd66f6015d4f (patch) | |
tree | a9b799eed6e778219c843117e2291ed7da20d693 | |
parent | f7ef064bdc91a07f7e0f3f784a6a1856f1be9f41 (diff) | |
download | spack-614a014948b5ff5b96ded1a5bd41bd66f6015d4f.tar.gz spack-614a014948b5ff5b96ded1a5bd41bd66f6015d4f.tar.bz2 spack-614a014948b5ff5b96ded1a5bd41bd66f6015d4f.tar.xz spack-614a014948b5ff5b96ded1a5bd41bd66f6015d4f.zip |
feynhiggs: add new package (#31306)
* feynhiggs: add new package
* Update var/spack/repos/builtin/packages/feynhiggs/package.py
* Update var/spack/repos/builtin/packages/feynhiggs/package.py
-rw-r--r-- | var/spack/repos/builtin/packages/feynhiggs/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/feynhiggs/package.py b/var/spack/repos/builtin/packages/feynhiggs/package.py new file mode 100644 index 0000000000..9f0836db17 --- /dev/null +++ b/var/spack/repos/builtin/packages/feynhiggs/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.package import * + + +class Feynhiggs(AutotoolsPackage): + """ FeynHiggs is a Fortran code for the (diagrammatic/EFT/hybrid) calculation + of the masses, mixings and much more of the Higgs bosons in the MSSM + with real/complex parameters at the highest level of accuracy.""" + + homepage = "https://wwwth.mpp.mpg.de/members/heinemey/feynhiggs/cFeynHiggs.html" + url = "https://wwwth.mpp.mpg.de/members/heinemey/feynhiggs/newversion/FeynHiggs-2.18.1.tar.gz" + + maintainers = ['vvolkl'] + + version('2.18.1', sha256='a9cdc4e2759f96fb9bd981b7be1ba8df070fb20c46d5b95e0c9700fccafe5ee6') + + def configure_args(self): + return ['FFLAGS=-fPIC', 'CFLAGS=-fPIC'] |