This is a reference C implementation of the LZFSE compressor introduced in the

Compression library with OS X 10.11 and iOS 9.

LZFSE is a Lempel-Ziv style data compression algorithm using Finite State
Entropy coding. It targets similar compression rates at higher compression and
decompression speed compared to deflate using zlib.

WWW: https://github.com/lzfse/lzfse
This commit is contained in:
Steven Kreuzer 2016-07-07 13:55:20 +00:00
parent 584e5fd0d2
commit 5383ae09db
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=418183
5 changed files with 34 additions and 0 deletions

View file

@ -72,6 +72,7 @@
SUBDIR += linux-f10-ucl
SUBDIR += linux-f10-upx
SUBDIR += lrzip
SUBDIR += lzfse
SUBDIR += lzip
SUBDIR += lzlib
SUBDIR += lzma

18
archivers/lzfse/Makefile Normal file
View file

@ -0,0 +1,18 @@
# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= lzfse
PORTVERSION= 20160707
CATEGORIES= archivers
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Lempel-Ziv style data compression algorithm
USE_GITHUB= yes
GH_ACCOUNT= lzfse
GH_TAGNAME= 4591228
USES= gmake
MAKE_ARGS+= INSTALL_PREFIX="${STAGEDIR}${PREFIX}"
.include <bsd.port.mk>

3
archivers/lzfse/distinfo Normal file
View file

@ -0,0 +1,3 @@
TIMESTAMP = 1467897116
SHA256 (lzfse-lzfse-20160707-4591228_GH0.tar.gz) = a6b8609947ed610d52f8438ad67c3fd6589f0ae831feae2ef10c2cfc2568d11f
SIZE (lzfse-lzfse-20160707-4591228_GH0.tar.gz) = 45414

View file

@ -0,0 +1,8 @@
This is a reference C implementation of the LZFSE compressor introduced in the
Compression library with OS X 10.11 and iOS 9.
LZFSE is a Lempel-Ziv style data compression algorithm using Finite State
Entropy coding. It targets similar compression rates at higher compression and
decompression speed compared to deflate using zlib.
WWW: https://github.com/lzfse/lzfse

View file

@ -0,0 +1,4 @@
@comment $FreeBSD$
include/lzfse.h
lib/liblzfse.a
bin/lzfse