diff options
author | delphij <delphij@FreeBSD.org> | 2008-06-19 02:47:28 +0800 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2008-06-19 02:47:28 +0800 |
commit | 7dbc4a407aad3df16133ab04c9bb760f301068c7 (patch) | |
tree | 4963fd07b677d4461f54b0f903277ba628d68402 /archivers | |
parent | 3fa4921c156c6ac35002d9471fb730eae2e4e13e (diff) | |
download | freebsd-ports-gnome-7dbc4a407aad3df16133ab04c9bb760f301068c7.tar.gz freebsd-ports-gnome-7dbc4a407aad3df16133ab04c9bb760f301068c7.tar.zst freebsd-ports-gnome-7dbc4a407aad3df16133ab04c9bb760f301068c7.zip |
New port: pigz, Parallel GZip.
PR: ports/124344
Submitted by: Gea-Suan Lin <gslin gslin org>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/pigz/Makefile | 27 | ||||
-rw-r--r-- | archivers/pigz/distinfo | 3 | ||||
-rw-r--r-- | archivers/pigz/pkg-descr | 6 |
4 files changed, 37 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 9553e9201286..5b22091c0557 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -112,6 +112,7 @@ SUBDIR += php4-zlib SUBDIR += php5-bz2 SUBDIR += php5-zlib + SUBDIR += pigz SUBDIR += ppmd SUBDIR += ppmd-7z SUBDIR += ppunpack diff --git a/archivers/pigz/Makefile b/archivers/pigz/Makefile new file mode 100644 index 000000000000..29d410d69c09 --- /dev/null +++ b/archivers/pigz/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: pigz +# Date created: 2008-06-06 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= pigz +PORTVERSION= 1.7 +CATEGORIES= archivers +MASTER_SITES= http://zlib.net/ +DISTFILES= pigz17.c.gz + +MAINTAINER= gslin@gslin.org +COMMENT= Parallel GZIP + +EXTRACT_AFTER_ARGS= > ${WRKSRC}/pigz17.c +NO_WRKSUBDIR= yes +PLIST_FILES= bin/pigz + +do-build: + ${CC} ${CFLAGS} -o ${WRKSRC}/pigz ${WRKSRC}/pigz17.c -lz ${PTHREAD_LIBS} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pigz ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/archivers/pigz/distinfo b/archivers/pigz/distinfo new file mode 100644 index 000000000000..9d99bfbf8222 --- /dev/null +++ b/archivers/pigz/distinfo @@ -0,0 +1,3 @@ +MD5 (pigz17.c.gz) = 13175bd8f936a05736af2400204a9628 +SHA256 (pigz17.c.gz) = 48c092379ad23d7d3f250c96a5993b06de2a564903d10e2bd509d878963e6d2f +SIZE (pigz17.c.gz) = 23977 diff --git a/archivers/pigz/pkg-descr b/archivers/pigz/pkg-descr new file mode 100644 index 000000000000..074d91adc351 --- /dev/null +++ b/archivers/pigz/pkg-descr @@ -0,0 +1,6 @@ +Mark Adler, maintainer of popular zlib library has released a multicore +capable Parallel Implementation of GZip, nicknamed PIGZ. Version 1.5 +implements nearly all of gzip's functionality, including decompression +of .gz and .Z (Unix compress) files. + +WWW: http://www.c10n.info/archives/505 |