aboutsummaryrefslogtreecommitdiff
path: root/archivers/lzlib
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2010-06-02 15:33:22 +0000
committerMartin Wilke <miwi@FreeBSD.org>2010-06-02 15:33:22 +0000
commita2c463183a666e7ffe3f2723be3efc5cea82c412 (patch)
tree543cfbeefa81da800c35090eee35cd3f4b0e52bd /archivers/lzlib
parent6cf2fcec23bcbed369c3d9e7bed326ef70d2a493 (diff)
downloadports-a2c463183a666e7ffe3f2723be3efc5cea82c412.tar.gz
ports-a2c463183a666e7ffe3f2723be3efc5cea82c412.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>
Notes
Notes: svn path=/head/; revision=255542
Diffstat (limited to 'archivers/lzlib')
-rw-r--r--archivers/lzlib/Makefile22
-rw-r--r--archivers/lzlib/distinfo3
-rw-r--r--archivers/lzlib/pkg-descr8
3 files changed, 33 insertions, 0 deletions
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>