Plzip is a massively parallel (multi-threaded), lossless data

compressor based on the LZMA algorithm, with very safe integrity
checking and a user interface similar to the one of gzip or bzip2.
Plzip uses the lzip file format; the files produced by plzip are
fully compatible with lzip-1.4 or newer.

WWW: http://www.nongnu.org/lzip/plzip.html

Albert Vernon <f3cun3c02@sneakemail.com>

PR:		ports/146884
Submitted by:	Albert Vernon <f3cun3c02 at sneakemail.com>
This commit is contained in:
Martin Wilke 2010-06-02 15:33:46 +00:00
parent a2c463183a
commit 04c55a2322
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=255543
4 changed files with 38 additions and 0 deletions

View file

@ -137,6 +137,7 @@
SUBDIR += php52-zip
SUBDIR += php52-zlib
SUBDIR += pigz
SUBDIR += plzip
SUBDIR += ppmd
SUBDIR += ppmd-7z
SUBDIR += ppunpack

25
archivers/plzip/Makefile Normal file
View file

@ -0,0 +1,25 @@
# New ports collection makefile for: plzip
# Date created: 2010-05-22
# Whom: Albert Vernon <f3cun3c02@sneakemail.com>
#
# $FreeBSD$
#
PORTNAME= plzip
PORTVERSION= 0.6
CATEGORIES= archivers
MASTER_SITES= SAVANNAH/lzip
MAINTAINER= f3cun3c02@sneakemail.com
COMMENT= Is a parallel, lossless data compressor based on the LZMA algorithm
BUILD_DEPENDS= lzlib>=1.0:${PORTSDIR}/archivers/lzlib
PLIST_FILES= bin/plzip
GNU_CONFIGURE= yes
CONFIGURE_ARGS= CXXFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
MAN1= plzip.1
INFO= plzip
.include <bsd.port.mk>

3
archivers/plzip/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (plzip-0.6.tar.gz) = f452029b1e8232cbe837f4437613e1ed
SHA256 (plzip-0.6.tar.gz) = 6ce0e98027399694d93dc46816d7ddd7593ab7c96b5ecf23b497fb46a7ef5aeb
SIZE (plzip-0.6.tar.gz) = 64535

View file

@ -0,0 +1,9 @@
Plzip is a massively parallel (multi-threaded), lossless data
compressor based on the LZMA algorithm, with very safe integrity
checking and a user interface similar to the one of gzip or bzip2.
Plzip uses the lzip file format; the files produced by plzip are
fully compatible with lzip-1.4 or newer.
WWW: http://www.nongnu.org/lzip/plzip.html
Albert Vernon <f3cun3c02@sneakemail.com>