From bc4d91110470f9bce9597593d71e3949a2f58dfd Mon Sep 17 00:00:00 2001 From: miwi Date: Wed, 2 Jun 2010 15:33:22 +0000 Subject: 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 PR: ports/146882 Submitted by: Albert Vernon --- archivers/Makefile | 1 + archivers/lzlib/Makefile | 22 ++++++++++++++++++++++ archivers/lzlib/distinfo | 3 +++ archivers/lzlib/pkg-descr | 8 ++++++++ 4 files changed, 34 insertions(+) create mode 100644 archivers/lzlib/Makefile create mode 100644 archivers/lzlib/distinfo create mode 100644 archivers/lzlib/pkg-descr (limited to 'archivers') 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 +# +# $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 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 -- cgit