diff options
author | jedgar <jedgar@FreeBSD.org> | 2000-05-07 13:20:58 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2000-05-07 13:20:58 +0000 |
commit | d8c5ee465a6f0066c3f02fa8bb13d1c204f323d5 (patch) | |
tree | 8fd23c9f2a18b9b7da723b48bc84b6cd6a17f851 /archivers | |
parent | a2dd312bd404684ac7551d5f9f33a4592529bb90 (diff) | |
download | FreeBSD-ports-d8c5ee465a6f0066c3f02fa8bb13d1c204f323d5.zip FreeBSD-ports-d8c5ee465a6f0066c3f02fa8bb13d1c204f323d5.tar.gz |
New port: mscompress, a Microsoft "compress.exe/expand.exe"
compatible (de)compressor
PR: 18027
Submitted by: Patrick Seal <patseal@hyperhost.net>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/mscompress/Makefile | 26 | ||||
-rw-r--r-- | archivers/mscompress/distinfo | 1 | ||||
-rw-r--r-- | archivers/mscompress/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/mscompress/pkg-descr | 9 | ||||
-rw-r--r-- | archivers/mscompress/pkg-plist | 2 |
6 files changed, 40 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 6b27103..adacb88 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -14,6 +14,7 @@ SUBDIR += linux_rar SUBDIR += lzo SUBDIR += makeself + SUBDIR += mscompress SUBDIR += nulib SUBDIR += p5-Compress-Zlib SUBDIR += pkzip diff --git a/archivers/mscompress/Makefile b/archivers/mscompress/Makefile new file mode 100644 index 0000000..b546159 --- /dev/null +++ b/archivers/mscompress/Makefile @@ -0,0 +1,26 @@ +# Ports collection makefile for: mscompress +# Date created: 15 Apr 2000 +# Whom: Patrick Seal <patseal@hyperhost.net> +# +# $FreeBSD$ +# + +PORTNAME= mscompress +PORTVERSION= 0.3 +CATEGORIES= archivers +MASTER_SITES= ftp://ftp.penguin.cz/pub/users/mhi/mscompress/ + +MAINTAINER= patseal@hyperhost.net + +USE_BZIP2= yes +HAS_CONFIGURE= yes + +MAN1= mscompress.1 msexpand.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/mscompress ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/msexpand ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/mscompress.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/msexpand.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/archivers/mscompress/distinfo b/archivers/mscompress/distinfo new file mode 100644 index 0000000..bad923f --- /dev/null +++ b/archivers/mscompress/distinfo @@ -0,0 +1 @@ +MD5 (mscompress-0.3.tar.bz2) = e85fe2fb0df95a7a921ecd867933ff89 diff --git a/archivers/mscompress/pkg-comment b/archivers/mscompress/pkg-comment new file mode 100644 index 0000000..0558409 --- /dev/null +++ b/archivers/mscompress/pkg-comment @@ -0,0 +1 @@ +Microsoft "compress.exe/expand.exe" compatible (de)compressor diff --git a/archivers/mscompress/pkg-descr b/archivers/mscompress/pkg-descr new file mode 100644 index 0000000..10da641 --- /dev/null +++ b/archivers/mscompress/pkg-descr @@ -0,0 +1,9 @@ +Microsoft "compress.exe/expand.exe" compatible (de)compressor + +This package contains two programs: + +msexpand, which decompress files compressed by Microsoft compress.exe utility +(e.g. Win 3.x installation files) + +mscompress, which compress files using LZ77 compression algorithm. Output +files can be decompressed using Microsoft expand.exe or msexpand(1). diff --git a/archivers/mscompress/pkg-plist b/archivers/mscompress/pkg-plist new file mode 100644 index 0000000..6c9953a --- /dev/null +++ b/archivers/mscompress/pkg-plist @@ -0,0 +1,2 @@ +bin/mscompress +bin/msexpand |