summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/nut/package.py
blob: cb937eaaf193be5223988491af6c03760f8148c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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.package 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:', type='build')
    depends_on('random123')

    # The conflict with %nvhpc is inherited from random123,
    # which is a C++ template library
    conflicts('%nvhpc')
    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(join_path(self.build_directory, 'apps/bh-3'), prefix.bin)
        install(join_path(self.build_directory, 'lib/libnut.a'), prefix.lib)
        install_tree('test/data', prefix.data)
        install_tree('lib', prefix.include)