Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{lib}[GCCcore/10.3.0] libaec v1.0.6 #16541

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions easybuild/easyconfigs/l/libaec/libaec-1.0.6-GCCcore-10.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
# Author: Denis Kristak
# Update: Thomas Hoffmann (EMBL)
easyblock = 'CMakeMake'

name = 'libaec'
version = '1.0.6'

homepage = 'https://gitlab.dkrz.de/k202009/libaec'
description = """Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers
(samples). The library achieves best results for low entropy data as often encountered in space imaging
instrument data or numerical model output from weather or climate simulations. While floating point representations
are not directly supported, they can also be efficiently coded by grouping exponents and mantissa."""

toolchain = {'name': 'GCCcore', 'version': '10.3.0'}

source_urls = ['https://gitlab.dkrz.de/k202009/%(namelower)s/-/archive/v%(version)s']
sources = [SOURCELOWER_TAR_GZ]
checksums = ['abab8c237d85c982bb4d6bde9b03c1f3d611dcacbd58bca55afac2496d61d4be']

builddependencies = [
('CMake', '3.20.1'),
('binutils', '2.36.1'),
]

sanity_check_paths = {
'files': ['bin/aec', 'include/libaec.h', 'include/szlib.h', 'lib/libaec.a', 'lib/libaec.%s' % SHLIB_EXT],
'dirs': ['share/man'],
}

sanity_check_commands = ["aec --help"]

moduleclass = 'lib'