Difference between revisions of "Lzip"

From CBLFS
Jump to navigationJump to search
(Lzip 1.5 no more needs make install-man)
Line 21: Line 21:
 
  make install &&
 
  make install &&
 
  make install-extra &&
 
  make install-extra &&
make install-man &&
 
 
  mv -v /usr/bin/lzip /bin
 
  mv -v /usr/bin/lzip /bin
  
Line 36: Line 35:
 
  make install &&
 
  make install &&
 
  make install-extra &&
 
  make install-extra &&
make install-man &&
 
 
  mv -v /usr/bin/lzip /bin
 
  mv -v /usr/bin/lzip /bin
  
Line 48: Line 46:
 
  make install &&
 
  make install &&
 
  make install-extra &&
 
  make install-extra &&
make install-man &&
 
 
  mv -v /usr/bin/lzip /bin
 
  mv -v /usr/bin/lzip /bin
  
Line 62: Line 59:
 
  make install &&
 
  make install &&
 
  make install-extra &&
 
  make install-extra &&
make install-man &&
 
 
  mv -v /usr/bin/lzip /bin
 
  mv -v /usr/bin/lzip /bin
  

Revision as of 07:29, 15 April 2009

Download Source: http://download.savannah.gnu.org/releases/lzip/lzip-1.11.tar.gz

Introduction to Lzip

Lzip is a lossless data compressor based on the LZMA algorithm, with very safe integrity checking and a user interface similar to the one of gzip or bzip2. Lzip decompresses almost as fast as gzip and compresses better than bzip2, which makes it well suited for software distribution and data archiving.

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

Dependencies

Non-Multilib

Compile the package:

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

Install the package

make install &&
make install-extra &&
mv -v /usr/bin/lzip /bin

Multilib

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

32Bit

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

Install the package:

make install &&
make install-extra &&
mv -v /usr/bin/lzip /bin

N32

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

Install the package:

make install &&
make install-extra &&
mv -v /usr/bin/lzip /bin

64Bit

Compile the package:

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

Install the package:

make install &&
make install-extra &&
mv -v /usr/bin/lzip /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.