v1.8.2 perf: *much* faster dictionary compression on small files perf: improved decompression speed and binary size perf: slightly faster HC compression and decompression speed perf: very small compression ratio improvement fix : compression compatible with low memory addresses (< 0xFFFF) fix : decompression segfault when provided with NULL input cli : new command --favor-decSpeed cli : benchmark mode more accurate for small inputs fullbench : can bench _destSize() variants doc : clarified block format parsing restrictions
18 lines
454 B
Makefile
18 lines
454 B
Makefile
# $NetBSD: Makefile,v 1.13 2018/05/10 13:16:27 adam Exp $
|
|
|
|
DISTNAME= lz4-1.8.2
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=lz4/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= filip@joyent.com
|
|
HOMEPAGE= http://lz4.github.io/lz4/
|
|
COMMENT= Extremely Fast Compression algorithm
|
|
LICENSE= 2-clause-bsd
|
|
|
|
USE_LANGUAGES= c99 c++
|
|
USE_TOOLS+= gmake pkg-config
|
|
PKGCONFIG_OVERRIDE+= lib/liblz4.pc.in
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|