Add lz4 1.9.2 (#13155)

This commit is contained in:
Adam J. Stewart 2019-10-13 19:50:44 -05:00 committed by GitHub
parent 48cd455cc1
commit b3fcfc1cb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,15 +7,16 @@
import sys
class Lz4(Package):
class Lz4(MakefilePackage):
"""LZ4 is lossless compression algorithm, providing compression speed
at 400 MB/s per core, scalable with multi-cores CPU. It also features
an extremely fast decoder, with speed in multiple GB/s per core,
typically reaching RAM speed limits on multi-core systems."""
homepage = "http://lz4.github.io/lz4/"
url = "https://github.com/lz4/lz4/archive/v1.7.5.tar.gz"
url = "https://github.com/lz4/lz4/archive/v1.9.2.tar.gz"
version('1.9.2', sha256='658ba6191fa44c92280d4aa2c271b0f4fbc0e34d249578dd05e50e76d0e5efcc')
version('1.9.0', sha256='f8b6d5662fa534bd61227d313535721ae41a68c9d84058b7b7d86e143572dcfb')
version('1.8.3', sha256='33af5936ac06536805f9745e0b6d61da606a1f8b4cc5c04dd3cbaca3b9b4fc43')
version('1.8.1.2', sha256='12f3a9e776a923275b2dc78ae138b4967ad6280863b77ff733028ce89b8123f9')
@ -32,13 +33,13 @@ def url_for_version(self, version):
else:
return "{0}/r{1}.tar.gz".format(url, version.joined)
def install(self, spec, prefix):
def build(self, spec, prefix):
if sys.platform != "darwin":
make('MOREFLAGS=-lrt') # fixes make error on CentOS6
else:
make()
if self.run_tests:
make('test') # requires valgrind to be installed
def install(self, spec, prefix):
make('install', 'PREFIX={0}'.format(prefix))
@run_after('install')