summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sombrero/package.py
blob: e688ec974d2fe941d8018094a6f58d2820c63a06 (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
# Copyright 2013-2021 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 llnl.util.filesystem import join_path
from spack import *


class Sombrero(MakefilePackage):
    "A next-generation conjugate gradient benchmark from computational particle physics"

    homepage = "https://github.com/sa2c/sombrero"
    url      = "https://github.com/sa2c/sombrero/archive/refs/tags/1.0.tar.gz"

    version('1.0', sha256='423a631c86f0e5f14dea186228871099ca0374dc07bf1bb24b6be17f79784682')

    depends_on('mpi')

    def edit(self, spec, prefix):
        # Make the `sombrero.sh` driver relocatable
        sombrero_sh = FileFilter(join_path(self.stage.source_path, 'sombrero.sh'))
        sombrero_dir = join_path(prefix.bin, 'sombrero')
        sombrero_sh.filter('sombrero/', '{0}/'.format(sombrero_dir))

    def install(self, spec, prefix):
        sombrero_dir = join_path(prefix.bin, 'sombrero')
        mkdirp(sombrero_dir)
        # Install the shell driver
        install('sombrero.sh', prefix.bin)
        # Install all executables
        for i in range(1, 7):
            install(join_path('sombrero', 'sombrero{0}'.format(i)),
                    sombrero_dir)