45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
# 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 Nut(CMakePackage):
|
|
"""NuT is Monte Carlo code for neutrino transport and
|
|
is a C++ analog to the Haskell McPhD code.
|
|
NuT is principally aimed at exploring on-node parallelism
|
|
and performance issues."""
|
|
|
|
homepage = "https://github.com/lanl/NuT"
|
|
url = "https://github.com/lanl/NuT/archive/0.1.1.tar.gz"
|
|
git = "https://github.com/lanl/NuT.git"
|
|
|
|
tags = ['proxy-app']
|
|
|
|
version('master', branch='master')
|
|
version('0.1.1', sha256='9f1dca4a9d7003b170fd57d6720228ff25471616cf884e033652e90c49c089bb')
|
|
|
|
depends_on('cmake@3.0:')
|
|
depends_on('random123')
|
|
|
|
conflicts('%intel', when='@serial')
|
|
conflicts('%pgi', when='@serial')
|
|
conflicts('%xl', when='@serial')
|
|
conflicts('%nag', when='@serial')
|
|
|
|
build_targets = ['VERBOSE=on']
|
|
|
|
def setup_build_environment(self, env):
|
|
env.set('RANDOM123_DIR', self.spec['random123'].prefix)
|
|
|
|
def install(self, spec, prefix):
|
|
install('README.md', prefix)
|
|
mkdirp(prefix.bin)
|
|
mkdirp(prefix.lib)
|
|
install('../spack-build/apps/bh-3', prefix.bin)
|
|
install('../spack-build/lib/libnut.a', prefix.lib)
|
|
install_tree('test/data', prefix.data)
|
|
install_tree('lib', prefix.include)
|