easyconfigs-it4i/b/Brotli/Brotli-1.1.0-GCCcore-14.2.0.eb
Lukas Krupcik fdd72d4f6f new file: b/Brotli/Brotli-1.1.0-GCCcore-14.2.0.eb
new file:   e/Emacs/Emacs-29.4-GCCcore-12.2.0.eb
	new file:   e/Emacs/Emacs-29.4-GCCcore-14.2.0.eb
	new file:   f/fontconfig/fontconfig-2.15.0-GCCcore-14.2.0.eb
	new file:   f/freetype/freetype-2.13.2-GCCcore-14.2.0.eb
	new file:   g/GTK3/GTK3-3.24.42-GCCcore-14.2.0.eb
	new file:   g/gettext/gettext-0.22.5-GCCcore-14.2.0.eb
	new file:   g/gperf/gperf-3.1-GCCcore-14.2.0.eb
	new file:   i/intltool/intltool-0.51.0-GCCcore-14.2.0.eb
	new file:   j/jbigkit/jbigkit-2.1-GCCcore-14.2.0.eb
	new file:   l/LibTIFF/LibTIFF-4.7.0-GCCcore-14.2.0.eb
	new file:   l/libdeflate/libdeflate-1.20-GCCcore-14.2.0.eb
	new file:   l/libjpeg-turbo/libjpeg-turbo-3.0.1-GCCcore-14.2.0.eb
	new file:   l/libpng/libpng-1.6.45-GCCcore-14.2.0.eb
	new file:   n/NASM/NASM-2.16.03-GCCcore-14.2.0.eb
	new file:   p/Python/Python-3.13.1-GCCcore-12.2.0.eb
	new file:   u/util-linux/util-linux-2.40-GCCcore-14.2.0.eb
	new file:   x/X11/X11-20240607-GCCcore-14.2.0.eb
2025-01-28 16:24:47 +01:00

38 lines
1.2 KiB
Plaintext

# IT4Innovations
# LK 2025
easyblock = 'CMakeMake'
name = 'Brotli'
version = '1.1.0'
homepage = 'https://github.com/google/brotli'
description = """Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination
of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio
comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate
but offers more dense compression.
The specification of the Brotli Compressed Data Format is defined in RFC 7932."""
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
source_urls = ['https://github.com/google/brotli/archive']
sources = ['v%(version)s.tar.gz']
checksums = ['e720a6ca29428b803f4ad165371771f5398faba397edf6778837a18599ea13ff']
builddependencies = [
('binutils', '2.42'),
('CMake', '3.31.3'),
]
configopts = ['-DBUILD_SHARED_LIBS=ON', '-DBUILD_SHARED_LIBS=OFF']
sanity_check_paths = {
'files': ['bin/brotli', 'lib/libbrotlidec.%s' % SHLIB_EXT, 'lib/libbrotlienc.%s' % SHLIB_EXT,
'lib/libbrotlidec.a', 'lib/libbrotlienc.a'],
'dirs': [],
}
sanity_check_commands = ["brotli --help"]
moduleclass = 'lib'