mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-11 01:12:11 +01:00

new file: c/c-blosc/c-blosc-1.21.0-GCC-10.3.0.eb new file: g/gompi/gompi-2020e.eb new file: h/HDF5/HDF5-1.12.0-gompi-2020e.eb new file: l/libfabric/libfabric-1.11.0-GCCcore-10.3.0.eb new file: o/OpenMPI/OpenMPI-4.1.4-GCC-10.3.0-CUDA-11.3.1.eb new file: o/openPMD-api/openPMD-api-0.14.4-gompi-2020e.eb new file: p/PNGwriter/PNGwriter-0.7.0-GCC-10.3.0.eb
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
# IT4Innovations
|
|
# BS 2023
|
|
|
|
easyblock = "CMakeMake"
|
|
|
|
name = "c-blosc"
|
|
version = "1.21.0"
|
|
|
|
homepage = 'https://github.com/Blosc/c-blosc'
|
|
description = """Blosc is a high performance compressor optimized for binary
|
|
data. It has been designed to transmit data to the processor cache faster than
|
|
the traditional, non-compressed, direct memory fetch approach via a memcpy() OS
|
|
call. Blosc is the first compressor (that I'm aware of) that is meant not
|
|
only to reduce the size of large datasets on-disk or in-memory, but also to
|
|
accelerate memory-bound computations.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '10.3.0'}
|
|
|
|
source_urls = ['https://github.com/Blosc/c-blosc/archive/refs/tags/']
|
|
sources = ['v%(version)s.tar.gz']
|
|
checksums = ['b0ef4fda82a1d9cbd11e0f4b9685abf14372db51703c595ecd4d76001a8b342d']
|
|
|
|
builddependencies = [('CMake', '3.20.1')]
|
|
|
|
separate_build_dir = True
|
|
|
|
sanity_check_paths = {
|
|
'files': ['include/blosc.h', 'include/blosc-export.h', 'lib/libblosc.a'],
|
|
'dirs': ['include', 'lib']
|
|
}
|
|
|
|
moduleclass = 'tools'
|