diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2006-06-09 11:39:44 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2006-06-09 11:39:44 +0000 |
commit | 10b6f1bcd3fb5960c5eccd2ad02c5ad03945c290 (patch) | |
tree | fbef509d071dc142f7badfe44da103ca6668db91 /archivers/lzma | |
parent | b7d7480701a7c4205808036c49429c92bdca1994 (diff) | |
download | ports-10b6f1bcd3fb5960c5eccd2ad02c5ad03945c290.tar.gz ports-10b6f1bcd3fb5960c5eccd2ad02c5ad03945c290.zip |
Notes
Diffstat (limited to 'archivers/lzma')
-rw-r--r-- | archivers/lzma/Makefile | 2 | ||||
-rw-r--r-- | archivers/lzma/pkg-descr | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/archivers/lzma/Makefile b/archivers/lzma/Makefile index 093d0008fa49..ab01d57e78ae 100644 --- a/archivers/lzma/Makefile +++ b/archivers/lzma/Makefile @@ -13,7 +13,7 @@ MASTER_SITE_SUBDIR= sevenzip DISTNAME= lzma${PORTVERSION:S/.//g} MAINTAINER= infofarmer@FreeBSD.org -COMMENT= Command line lzma archiver +COMMENT= High-ratio LZMA compressor USE_BZIP2= yes NO_WRKSUBDIR= yes diff --git a/archivers/lzma/pkg-descr b/archivers/lzma/pkg-descr index 6089e1945f7a..e1b40a381668 100644 --- a/archivers/lzma/pkg-descr +++ b/archivers/lzma/pkg-descr @@ -1,10 +1,12 @@ -Simple command line version of compression program using LZMA compression -method. This program is taken from LZMA SDK. 7-zip uses the same compression -method, but creates 7Z archives instead of pure LZMA data stream. LZMA can -compress and decompress data streams using standard input/output. +Simple command line implementation of LZMA compression algorithm. This tool +uses raw LZMA format as opposed to 7z container format, which uses LZMA as +the default compression algorithm, but has many additional features and a +header incompatible to that of raw LZMA streams. If you need to create +highly-compatible archives, you probably want to use archivers/p7zip port. +Lzma tool is taken from LZMA SDK. Compression ratio is about 25-30% better than bzip2 and decompression speed -is about two times faster. This makes LZMA good bzip2 replacement for -use in software distribution. +is about two times faster. The downside is higher CPU and RAM requirements +for compression. WWW: http://www.7-zip.org/sdk.html |