mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
68a5e7840e
Lizard (formerly LZ5) is an efficient compressor with very fast decompression. It achieves compression ratio that is comparable to zip/zlib and zstd/brotli (at low and medium compression levels) at decompression speed of 1000 MB/s and faster. WWW: https://github.com/inikep/lizard PR: 237310 Submitted by: Hiroki Tagato <tagattie@yandex.com> Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19933
28 lines
526 B
Makefile
28 lines
526 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= lizard
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.0
|
|
CATEGORIES= archivers
|
|
|
|
MAINTAINER= tagattie@yandex.com
|
|
COMMENT= Efficient compressor with very fast decompression
|
|
|
|
LICENSE= BSD2CLAUSE GPLv2
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/lib/LICENSE
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/programs/COPYING
|
|
|
|
USES= gmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= inikep
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lizard \
|
|
${STAGEDIR}/${PREFIX}/lib/liblizard.so.1.0.0
|
|
|
|
.include <bsd.port.mk>
|