summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libxstream/package.py
blob: af28a10736e95ac817d282f4cea5766b33920192 (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
# Copyright 2013-2020 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 Libxstream(Package):
    """LIBXSTREAM is a library to work with streams, events, and code regions
    that are able to run asynchronous while preserving the usual stream
    conditions."""

    homepage = 'https://github.com/hfp/libxstream'
    url      = 'https://github.com/hfp/libxstream/archive/0.9.0.tar.gz'

    version('0.9.0', sha256='03365f23b337533b8e5a049a24bc5a91c0f1539dd042ca5312abccc8f713b473')

    def patch(self):
        kwargs = {'ignore_absent': False, 'backup': True, 'string': True}
        makefile = FileFilter('Makefile.inc')

        makefile.filter('CC =',  'CC ?=',  **kwargs)
        makefile.filter('CXX =', 'CXX ?=', **kwargs)
        makefile.filter('FC =',  'FC ?=',  **kwargs)

    def install(self, spec, prefix):
        make()
        install_tree('lib', prefix.lib)
        install_tree('include', prefix.include)
        install_tree('documentation', prefix.share + '/libxstream/doc/')