diff options
author | Mark Pulford <markp@FreeBSD.org> | 2002-02-17 07:58:57 +0000 |
---|---|---|
committer | Mark Pulford <markp@FreeBSD.org> | 2002-02-17 07:58:57 +0000 |
commit | b1b402e62e834062eeefdc05a8492019d71c9169 (patch) | |
tree | 19d9af9c1206da387744f3efb9810639bcbff8b2 /archivers | |
parent | Ops.. I forfot to add this patch on last commit. (diff) |
Add szip 1.12b, a fast compression utility.
PR: 33934
Submitted by: Igor Pokrovsky <tiamat@telegraph.spb.ru>
Notes
Notes:
svn path=/head/; revision=54802
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/szip/Makefile | 26 | ||||
-rw-r--r-- | archivers/szip/distinfo | 1 | ||||
-rw-r--r-- | archivers/szip/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/szip/pkg-descr | 10 | ||||
-rw-r--r-- | archivers/szip/pkg-plist | 5 |
6 files changed, 44 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index f049a1524988..a3aafe41454a 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -42,6 +42,7 @@ SUBDIR += ruby-zlib SUBDIR += sectar SUBDIR += stuffit + SUBDIR += szip SUBDIR += ucl SUBDIR += unace SUBDIR += unadf diff --git a/archivers/szip/Makefile b/archivers/szip/Makefile new file mode 100644 index 000000000000..abb9d214de02 --- /dev/null +++ b/archivers/szip/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: szip +# Date created: 15 January 2002 +# Whom: Igor Pokrovsky <tiamat@telegraph.spb.ru> +# +# $FreeBSD$ +# + +PORTNAME= szip +PORTVERSION= 1.12b +CATEGORIES= archivers +MASTER_SITES= http://www.compressconsult.com/szip/ +DISTNAME= ${PORTNAME}_${PORTVERSION:S/.//}_FreeBSD + +MAINTAINER= tiamat@telegraph.spb.ru + +NO_BUILD= yes +ONLY_FOR_ARCHS= i386 + +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin +.ifndef (NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/*.txt ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/archivers/szip/distinfo b/archivers/szip/distinfo new file mode 100644 index 000000000000..04f3e64a1609 --- /dev/null +++ b/archivers/szip/distinfo @@ -0,0 +1 @@ +MD5 (szip_112b_FreeBSD.tar.gz) = fbcf065b8889acd4d0eb22300450ea60 diff --git a/archivers/szip/pkg-comment b/archivers/szip/pkg-comment new file mode 100644 index 000000000000..10537ba7fe6f --- /dev/null +++ b/archivers/szip/pkg-comment @@ -0,0 +1 @@ +A fast compression utility diff --git a/archivers/szip/pkg-descr b/archivers/szip/pkg-descr new file mode 100644 index 000000000000..ff3115d8fa77 --- /dev/null +++ b/archivers/szip/pkg-descr @@ -0,0 +1,10 @@ +Szip performs data compression/decompression. It uses a limited order +sort transform. This transformation is related to the Burrows-Wheeler +transformation used in blocksorting compression methods. The +difference is a fast, deterministic behaviour in time at some +compression loss. + +WWW: http://www.compressconsult.com/szip/ + +- Igor Pokrovsky +tiamat@telegraph.spb.ru diff --git a/archivers/szip/pkg-plist b/archivers/szip/pkg-plist new file mode 100644 index 000000000000..3f78d5de9836 --- /dev/null +++ b/archivers/szip/pkg-plist @@ -0,0 +1,5 @@ +bin/szip +%%PORTDOCS%%share/doc/szip/history.txt +%%PORTDOCS%%share/doc/szip/readme.txt +%%PORTDOCS%%share/doc/szip/techinfo.txt +%%PORTDOCS%%@dirrm share/doc/szip |