summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xabclib/package.py
blob: 2141fa3e512dc31d9d8d2f1cb9ff9dd2c7dd2b02 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# 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 import *


class Xabclib(MakefilePackage):
    """
    Xabclib (eXtended ABCLib) is a numerical library with auto-tuning facility.
    """

    homepage = "http://www.abc-lib.org/Xabclib/index.html"
    url      = "http://www.abc-lib.org/Xabclib/Release/Xabclib-v1.03.tar.gz"

    version('1.03', sha256='9d200f40f1db87abc26cfe75a22db3a6d972988a28fc0ce8421a0c88cc574d1a')

    def edit(self, spec, prefix):
        cc = [spack_cc, '-O3', self.compiler.openmp_flag]
        fc = [spack_fc, '-O3', self.compiler.openmp_flag]
        if spec.satisfies('%gcc'):
            fc.extend(['-ffixed-form', '-cpp'])
        elif spec.satisfies('%fj'):
            fc.extend(['-Fixed', '-Cpp'])
        filter_file(
            '^rm libOpenAT.a$',
            'rm -f libOpenAT.a',
            'make.all'
        )
        for makefile in find('.', 'makefile', recursive=True):
            m = FileFilter(makefile)
            m.filter(
                'F90 += .*$',
                'F90 = {0}'.format(' '.join(fc))
            )
            m.filter(
                'F90O3 += .*$',
                'F90O3 = {0}'.format(' '.join(fc))
            )
            m.filter(
                'CC += .*$',
                'CC = {0}'.format(' '.join(cc))
            )
            m.filter(
                'LD += .*$',
                'LD = {0}'.format(' '.join(fc))
            )
            if spec.satisfies('%fj') and 'samples_c' in makefile:
                m.filter('$(LD)', '$(LD) -mlcmain=main', string=True)

    def build(self, spec, prefix):
        sh = which('sh')
        sh('./make.all')

    def install(self, spec, prefix):
        mkdir(prefix.lib)
        mkdir(prefix.doc)
        install('libOpenAT.a', prefix.lib)
        install('Readme.pdf', prefix.doc)

    @property
    def libs(self):
        return find_libraries('libOpenAT', self.prefix.lib, shared=False)