summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sombrero/package.py
blob: 4ff571d0a889c4f17caa9e282524c1850426cd53 (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
47
48
# 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('2021-07-31',
            sha256='9c59693f330904b1f444187d1974a179c61d801f063581acb94a7a77955151e0')
    version('2021-07-14',
            sha256='d2801a4efea312a14fc34775b0dea862e958ccb9b7721a63b6c29e1224e12257')
    version('2021-07-08',
            sha256='816b0f0a684a421fa620f11c21649ac162e85d1febd6a7e10cfd07604760c0d6')
    # Version 1 is incompatible with spack
    # as CFLAGS and the like are hardcoded in the makefile.
    version('1.0',
            sha256='423a631c86f0e5f14dea186228871099ca0374dc07bf1bb24b6be17f79784682',
            deprecated=True)

    depends_on('mpi')

    maintainers = ['mmesiti', 'edbennett']

    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)