37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
# 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 G4abla(Package):
|
|
"""Geant4 data for nuclear shell effects in INCL/ABLA hadronic mode"""
|
|
homepage = "https://geant4.web.cern.ch"
|
|
url = "https://geant4-data.web.cern.ch/geant4-data/datasets/G4ABLA.3.0.tar.gz"
|
|
|
|
tags = ['hep']
|
|
|
|
maintainers = ['drbenmorgan']
|
|
|
|
# Only versions relevant to Geant4 releases built by spack are added
|
|
version('3.1', sha256='7698b052b58bf1b9886beacdbd6af607adc1e099fc730ab6b21cf7f090c027ed')
|
|
version('3.0', sha256='99fd4dcc9b4949778f14ed8364088e45fa4ff3148b3ea36f9f3103241d277014')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(join_path(prefix.share, 'data'))
|
|
install_path = join_path(prefix.share, 'data', 'G4ABLA{0}'
|
|
.format(self.version))
|
|
install_tree(self.stage.source_path, install_path)
|
|
|
|
def setup_dependent_run_environment(self, env, dependent_spec):
|
|
install_path = join_path(self.prefix.share, 'data', 'G4ABLA{0}'
|
|
.format(self.version))
|
|
env.set('G4ABLADATA', install_path)
|
|
|
|
def url_for_version(self, version):
|
|
"""Handle version string."""
|
|
return ("http://geant4-data.web.cern.ch/geant4-data/datasets/G4ABLA.%s.tar.gz" % version)
|