New port: archivers/lizard
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
This commit is contained in:
parent
414932c313
commit
68a5e7840e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=499270
5 changed files with 51 additions and 0 deletions
|
@ -74,6 +74,7 @@
|
|||
SUBDIR += libunrar
|
||||
SUBDIR += libunrar5
|
||||
SUBDIR += libzip
|
||||
SUBDIR += lizard
|
||||
SUBDIR += lrzip
|
||||
SUBDIR += lua-lzlib
|
||||
SUBDIR += lua51-zlib
|
||||
|
|
27
archivers/lizard/Makefile
Normal file
27
archivers/lizard/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# $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>
|
3
archivers/lizard/distinfo
Normal file
3
archivers/lizard/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1550625881
|
||||
SHA256 (inikep-lizard-v1.0_GH0.tar.gz) = 6f666ed699fc15dc7fdaabfaa55787b40ac251681b50c0d8df017c671a9457e6
|
||||
SIZE (inikep-lizard-v1.0_GH0.tar.gz) = 213732
|
6
archivers/lizard/pkg-descr
Normal file
6
archivers/lizard/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
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
|
14
archivers/lizard/pkg-plist
Normal file
14
archivers/lizard/pkg-plist
Normal file
|
@ -0,0 +1,14 @@
|
|||
bin/lizard
|
||||
bin/lizardcat
|
||||
bin/unlizard
|
||||
include/lizard_common.h
|
||||
include/lizard_compress.h
|
||||
include/lizard_frame.h
|
||||
lib/liblizard.a
|
||||
lib/liblizard.so
|
||||
lib/liblizard.so.1
|
||||
lib/liblizard.so.1.0.0
|
||||
libdata/pkgconfig/liblizard.pc
|
||||
man/man1/lizard.1.gz
|
||||
man/man1/lizardcat.1.gz
|
||||
man/man1/unlizard.1.gz
|
Loading…
Reference in a new issue