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

new file: p/pigz/pigz-2.6-GCC-10.2.0.eb modified: v/VisIt/VisIt-2.10.0.eb new file: v/VisIt/VisIt-3.1.0.eb deleted: m/Molpro/Molpro-mpp-2020.2.linux_x86_64_openmp.eb
41 lines
860 B
Plaintext
41 lines
860 B
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
easyblock = 'MakeCp'
|
|
|
|
name = 'pigz'
|
|
version = '2.6'
|
|
|
|
homepage = 'http://zlib.net/pigz/'
|
|
|
|
description = """
|
|
pigz, which stands for parallel implementation of gzip, is a fully
|
|
functional replacement for gzip that exploits multiple processors and multiple
|
|
cores to the hilt when local_compressing data. pigz was written by Mark Adler, and
|
|
uses the zlib and pthread libraries.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '10.2.0'}
|
|
|
|
source_urls = ['http://zlib.net/pigz/']
|
|
sources = [SOURCE_TAR_GZ]
|
|
|
|
# Patch Makefile so zlib provided by EasyBuild is picked up
|
|
#patches = ['%(name)s-%(version)s_Makefile.patch']
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11', '', True),
|
|
]
|
|
|
|
parallel = 1
|
|
|
|
files_to_copy = [(["pigz", "unpigz"], "bin")]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/pigz', 'bin/unpigz'],
|
|
'dirs': [],
|
|
}
|
|
|
|
|
|
moduleclass = 'tools'
|