pythia8: add new package (#14665)

This commit is contained in:
Michael Kuhn 2020-01-29 18:40:39 +01:00 committed by GitHub
parent 4e3617fe1d
commit 52a7f94d9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,29 @@
# Copyright 2013-2020 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 Pythia8(AutotoolsPackage):
"""The Pythia program is a standard tool for the generation of events in
high-energy collisions, comprising a coherent set of physics models for
the evolution from a few-body hard process to a complex multiparticle
final state."""
homepage = "http://home.thep.lu.se/Pythia/"
url = "http://home.thep.lu.se/~torbjorn/pythia8/pythia8244.tgz"
version('8301', sha256='51382768eb9aafb97870dca1909516422297b64ef6a6b94659259b3e4afa7f06')
version('8244', sha256='e34880f999daf19cdd893a187123927ba77d1bf851e30f6ea9ec89591f4c92ca', preferred=True)
variant('shared', default=True, description='Build shared library')
def configure_args(self):
args = []
if '+shared' in self.spec:
args.append('--enable-shared')
return args