Files
spack/var/spack/repos/builtin/packages/nut/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

45 lines
1.4 KiB
Python

# Copyright 2013-2018 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"
git = "https://github.com/lanl/NuT.git"
tags = ['proxy-app']
version('serial', branch='master')
version('openmp', branch='openmp')
depends_on('cmake@3.0:')
depends_on('random123')
conflicts('%intel', when='@serial')
conflicts('%pgi', when='@serial')
conflicts('%xl', when='@serial')
conflicts('%nag', when='@serial')
def setup_environment(self, spack_env, run_env):
spack_env.set('RANDOM123_DIR', self.spec['random123'].prefix)
build_targets = ['VERBOSE=on']
def install(self, spec, prefix):
install('README.md', prefix)
mkdirp(prefix.bin)
mkdirp(prefix.lib)
install('spack-build/test/nut_unittests', prefix.bin)
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)