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] LibLZF v3.6 #16543

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
31 changes: 31 additions & 0 deletions easybuild/easyconfigs/l/LibLZF/LibLZF-3.6-GCCcore-10.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
# Author: Denis Kristak
# Update: Thomas Hoffmann (EMBL)
easyblock = 'ConfigureMake'

name = 'LibLZF'
version = '3.6'

homepage = 'http://oldhome.schmorp.de/marc/liblzf.html'
description = """LibLZF is a very small data compression library. It consists of only two .c and two .h files
and is very easy to incorporate into your own programs. The compression algorithm is very, very fast, yet still
written in portable C."""

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

source_urls = ['http://dist.schmorp.de/liblzf/Attic/']
sources = ['liblzf-%(version)s.tar.gz']
checksums = ['9c5de01f7b9ccae40c3f619d26a7abec9986c06c36d260c179cedd04b89fb46a']

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

sanity_check_commands = ['lzf -h']

sanity_check_paths = {
'files': ['bin/lzf', 'lib/liblzf.a'],
'dirs': ['bin', 'lib'],
}

moduleclass = 'lib'