2025-02-17 18:33:31 +01:00
|
|
|
Requirements
|
|
|
|
------------
|
|
|
|
You will need a C compiler.
|
2025-02-17 20:24:33 +01:00
|
|
|
I use gcc 4.8.0 and 3.3.6, but the code should compile with any
|
2025-02-17 18:33:31 +01:00
|
|
|
standards compliant compiler.
|
|
|
|
Gcc is available at http://gcc.gnu.org.
|
|
|
|
|
|
|
|
|
|
|
|
Procedure
|
|
|
|
---------
|
|
|
|
1. Unpack the archive if you have not done so already:
|
|
|
|
|
|
|
|
lzip -cd clzip[version].tar.lz | tar -xf -
|
|
|
|
or
|
|
|
|
gzip -cd clzip[version].tar.gz | tar -xf -
|
|
|
|
|
|
|
|
This creates the directory ./clzip[version] containing the source from
|
|
|
|
the main archive.
|
|
|
|
|
|
|
|
2. Change to clzip directory and run configure.
|
2025-02-17 20:05:47 +01:00
|
|
|
(Try 'configure --help' for usage instructions).
|
2025-02-17 18:33:31 +01:00
|
|
|
|
|
|
|
cd clzip[version]
|
|
|
|
./configure
|
|
|
|
|
|
|
|
3. Run make.
|
|
|
|
|
|
|
|
make
|
|
|
|
|
2025-02-17 20:05:47 +01:00
|
|
|
4. Optionally, type 'make check' to run the tests that come with clzip.
|
2025-02-17 18:33:31 +01:00
|
|
|
|
2025-02-17 20:05:47 +01:00
|
|
|
5. Type 'make install' to install the program and any data files and
|
2025-02-17 18:33:31 +01:00
|
|
|
documentation.
|
|
|
|
|
2025-02-17 20:12:24 +01:00
|
|
|
You can install only the program, the info manual or the man page
|
|
|
|
typing 'make install-bin', 'make install-info' or 'make install-man'
|
|
|
|
respectively.
|
|
|
|
|
2025-02-17 20:24:33 +01:00
|
|
|
Instead of 'make install', you can type 'make install-as-lzip' to
|
|
|
|
install the program and any data files and documentation, and link
|
|
|
|
the program to the name 'lzip'.
|
2025-02-17 20:12:24 +01:00
|
|
|
|
2025-02-17 18:33:31 +01:00
|
|
|
|
|
|
|
Another way
|
|
|
|
-----------
|
|
|
|
You can also compile clzip into a separate directory. To do this, you
|
2025-02-17 20:05:47 +01:00
|
|
|
must use a version of 'make' that supports the 'VPATH' variable, such
|
|
|
|
as GNU 'make'. 'cd' to the directory where you want the object files
|
|
|
|
and executables to go and run the 'configure' script. 'configure'
|
|
|
|
automatically checks for the source code in '.', in '..' and in the
|
|
|
|
directory that 'configure' is in.
|
|
|
|
|
|
|
|
'configure' recognizes the option '--srcdir=DIR' to control where to
|
|
|
|
look for the sources. Usually 'configure' can determine that directory
|
2025-02-17 18:33:31 +01:00
|
|
|
automatically.
|
|
|
|
|
2025-02-17 20:05:47 +01:00
|
|
|
After running 'configure', you can run 'make' and 'make install' as
|
2025-02-17 18:33:31 +01:00
|
|
|
explained above.
|
|
|
|
|
|
|
|
|
2025-02-17 20:12:24 +01:00
|
|
|
Copyright (C) 2010, 2011, 2012, 2013 Antonio Diaz Diaz.
|
2025-02-17 18:33:31 +01:00
|
|
|
|
|
|
|
This file is free documentation: you have unlimited permission to copy,
|
|
|
|
distribute and modify it.
|