38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
# Copyright 2013-2021 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 Recola(CMakePackage):
|
|
"""REcursive Computation of One-Loop Amplitudes:
|
|
a fortran library for the perturbative computation of
|
|
next-to-leading-order transition amplitudes in the
|
|
Standard Model of particle physics."""
|
|
|
|
tags = ['hep']
|
|
|
|
homepage = "https://recola.hepforge.org"
|
|
url = "https://recola.hepforge.org/downloads/?f=recola2-2.2.3.tar.gz"
|
|
|
|
maintainers = ['vvolkl']
|
|
|
|
variant('python', default=True,
|
|
description="Build py-recola python bindings.")
|
|
|
|
version('2.2.3', sha256='db0f5e448ed603ac4073d4bbf36fd74f401a22876ad390c0d02c815a78106c5f')
|
|
|
|
depends_on('collier')
|
|
depends_on('recola-sm')
|
|
depends_on('python@3:', when='+python')
|
|
|
|
def cmake_args(self):
|
|
args = [
|
|
'-DCMAKE_VERBOSE_MAKEFILE=ON',
|
|
self.define_from_variant("with_python3", 'python'),
|
|
]
|
|
return args
|