
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
# Copyright 2013-2019 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/')
|