Difference between revisions of "Lzip"

From CBLFS
Jump to navigationJump to search
(Short Descriptions: lzdiff/lzgrep also support gzip/bzip2)
(Contents: added lziprecover)
Line 70: Line 70:
 
|-valign="top"
 
|-valign="top"
 
! Installed Programs:
 
! Installed Programs:
| lzip, lzdiff, and lzgrep
+
| lzip, lzdiff, lzgrep and lziprecover
 
|-valign="top"
 
|-valign="top"
 
! Installed Libraries:
 
! Installed Libraries:
Line 87: Line 87:
 
|-valign="top"
 
|-valign="top"
 
! lzgrep
 
! lzgrep
| Runs grep on lzipped bzipped and gzipped files
+
| Runs grep on lzipped bzipped and gzipped files.
 
|-valign="top"
 
|-valign="top"
 
! lzdiff
 
! lzdiff
| Runs diff on lzipped bzipped and gzipped files
+
| Runs diff on lzipped bzipped and gzipped files.
 +
|-valign="top"
 +
! lziprecover
 +
| Recovers undamaged members from lzipped files.
 
|}
 
|}

Revision as of 06:18, 29 January 2009

Download Source: http://nongnu.askapache.com/lzip/lzip-1.11.tar.gz

Introduction to Lzip

Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-Markov chain-Algorithm) algorithm designed by Igor Pavlov. The high compression of LZMA comes from combining two basic, well-proven compression ideas: sliding dictionaries (i.e. LZ77/78), and markov models (i.e. the thing used by every compression algorithm that uses a range encoder or similar order-0 entropy coder as its last stage) with segregation of contexts according to what the bits are used for.

Project Homepage: http://www.nongnu.org/lzip/lzip.html

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr --bindir=/bin &&
make

Install the package

make install &&
make install-extra &&
make install-man &&
mv -v /bin/lz{grep,diff} /usr/bin

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr --bindir=/bin &&
make

Install the package:

make install &&
make install-extra &&
make install-man &&
mv -v /bin/lz{grep,diff} /usr/bin

N32

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --bindir=/bin &&
make

Install the package:

make install &&
make install-extra &&
make install-man &&
mv -v /bin/lz{grep,diff} /usr/bin

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --bindir=/bin &&
make

Install the package:

make install &&
make install-extra &&
make install-man &&
mv -v /bin/lz{grep,diff} /usr/bin

Contents

Installed Programs: lzip, lzdiff, lzgrep and lziprecover
Installed Libraries: None
Installed Directories: None

Short Descriptions

lzip Compresses Decompresses lzipped files.
lzgrep Runs grep on lzipped bzipped and gzipped files.
lzdiff Runs diff on lzipped bzipped and gzipped files.
lziprecover Recovers undamaged members from lzipped files.