This directory contains some source files from the
7z archive utility. (www.7-zip.org)

All the files in this directory was originally released
with the LGPL license.

Modifications
Copyright (C) 2002 Andrea Mazzoleni
Copyright (C) 2003 Martin Ankerl


* build it:
    make

* help:
    lzma -h

* compress:
   to compress an existing file:

     lzma <file >file.lzma

   to create a tar and compress it:

     tar c ~/testdir | lzma > out.tar.lzma

   use very good compression:

     lzma -x -b64 -s25 <file >file.lzma
     

* decompress:
   to decompress an existing file:

     lzma d <file.lzma >file

   to extract a lzma tar file:

     lzma d <out.tar.lzma | tar x

