Skip to content

[LZO] [package list]

LZO/2.10-cpeCray-21.12 (LZO-2.10-cpeCray-21.12.eb)

This software is archived in the LUMI-SoftwareStack GitHub repository as easybuild/easyconfigs/__archive__/l/LZO/LZO-2.10-cpeCray-21.12.eb. The corresponding module would be LZO/2.10-cpeCray-21.12.

##
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
#
# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
# Authors::   Fotis Georgatos <fotis@cern.ch>
# License::   MIT/GPL
# $Id$
#
# Adapted by Kurt Lust, LUMI consortium & University of Antwerpen
##

easyblock = 'ConfigureMake'

local_LZO_version = '2.10' # https://www.oberhumer.com/opensource/lzo/

name =    'LZO'
version = '2.10'

homepage = 'https://www.oberhumer.com/opensource/lzo/'

whatis = [
    "Description: LZO is a portable lossless data compression library"
]

description = """
LZO is a portable lossless data compression library written in ANSI C.
It offers pretty fast compression and *extremely* fast decompression.
It also includes slower compression levels achieving a quite competitive
compression ratio while still decompressing at this very high speed.
It is faster than zlib or BZIP2, but doesn't compress as well as those
packages do.
"""

source_urls = [homepage + 'download/']
sources =     [SOURCELOWER_TAR_GZ]
checksums =   ['c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072']

toolchain = {'name': 'cpeCray', 'version': '21.12'}
toolchainopts = {'pic': True}

builddependencies = [
    ('buildtools', '%(toolchain_version)s', '', True),
]

configopts = '--enable-shared --enable-static'

runtest = 'test'

sanity_check_paths = {
    'files': ['lib/liblzo2.a', 'lib/liblzo2.%s' % SHLIB_EXT],
    'dirs':  ['include']
}

moduleclass = 'devel'

[LZO] [package list]