diff options
author | miwi <miwi@FreeBSD.org> | 2010-06-02 23:33:22 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-06-02 23:33:22 +0800 |
commit | bc4d91110470f9bce9597593d71e3949a2f58dfd (patch) | |
tree | a9f94c552a4cb72f873cdf7bea7629dc9945e043 /archivers | |
parent | 9b348610e6958c1755c00fcce891aa7ffdfb5266 (diff) | |
download | freebsd-ports-gnome-bc4d91110470f9bce9597593d71e3949a2f58dfd.tar.gz freebsd-ports-gnome-bc4d91110470f9bce9597593d71e3949a2f58dfd.tar.zst freebsd-ports-gnome-bc4d91110470f9bce9597593d71e3949a2f58dfd.zip |
The lzlib compression library provides in-memory LZMA compression
and decompression functions, including integrity checking of the
uncompressed data. The compressed data format used by the library
is the lzip format.
WWW: http://www.nongnu.org/lzip/lzlib.html
Albert Vernon <f3cun3c02@sneakemail.com>
PR: ports/146882
Submitted by: Albert Vernon <f3cun3c02 at sneakemail.com>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/lzlib/Makefile | 22 | ||||
-rw-r--r-- | archivers/lzlib/distinfo | 3 | ||||
-rw-r--r-- | archivers/lzlib/pkg-descr | 8 |
4 files changed, 34 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 2230a152b0d0..f84e577ffc9c 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -72,6 +72,7 @@ SUBDIR += linux-ucl SUBDIR += linux-upx SUBDIR += lzip + SUBDIR += lzlib SUBDIR += lzma SUBDIR += lzmalib SUBDIR += lzo diff --git a/archivers/lzlib/Makefile b/archivers/lzlib/Makefile new file mode 100644 index 000000000000..7c8053c40701 --- /dev/null +++ b/archivers/lzlib/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: lzlib +# Date created: 2010-05-22 +# Whom: Albert Vernon <f3cun3c02@sneakemail.com> +# +# $FreeBSD$ +# + +PORTNAME= lzlib +PORTVERSION= 1.0 +CATEGORIES= archivers +MASTER_SITES= SAVANNAH/lzip + +MAINTAINER= f3cun3c02@sneakemail.com +COMMENT= Provides in-memory LZMA compression and decompression functions + +PLIST_FILES= include/lzlib.h \ + lib/liblz.a + +GNU_CONFIGURE= yes +INFO= lzlib + +.include <bsd.port.mk> diff --git a/archivers/lzlib/distinfo b/archivers/lzlib/distinfo new file mode 100644 index 000000000000..568b7363ab92 --- /dev/null +++ b/archivers/lzlib/distinfo @@ -0,0 +1,3 @@ +MD5 (lzlib-1.0.tar.gz) = 39bfe00964a03be95d51ebbe9104b337 +SHA256 (lzlib-1.0.tar.gz) = 2b2d84514bbcb057e28876146efc6bd4a57b6c7998d60c50500b9dca61c4d0e6 +SIZE (lzlib-1.0.tar.gz) = 80048 diff --git a/archivers/lzlib/pkg-descr b/archivers/lzlib/pkg-descr new file mode 100644 index 000000000000..1f9d59ff5313 --- /dev/null +++ b/archivers/lzlib/pkg-descr @@ -0,0 +1,8 @@ +The lzlib compression library provides in-memory LZMA compression +and decompression functions, including integrity checking of the +uncompressed data. The compressed data format used by the library +is the lzip format. + +WWW: http://www.nongnu.org/lzip/lzlib.html + +Albert Vernon <f3cun3c02@sneakemail.com> |