2025-02-17 18:33:31 +01:00
|
|
|
Requirements
|
|
|
|
------------
|
|
|
|
You will need a C compiler.
|
2025-02-17 20:46:36 +01:00
|
|
|
I use gcc 5.3.0 and 4.1.2, but the code should compile with any standards
|
|
|
|
compliant compiler.
|
2025-02-17 18:33:31 +01:00
|
|
|
Gcc is available at http://gcc.gnu.org.
|
|
|
|
|
2025-02-17 20:46:36 +01:00
|
|
|
The operating system must allow signal handlers read access to objects with
|
|
|
|
static storage duration so that the cleanup handler for Control-C can delete
|
|
|
|
the partial output file.
|
|
|
|
|
2025-02-17 18:33:31 +01:00
|
|
|
|
|
|
|
Procedure
|
|
|
|
---------
|
|
|
|
1. Unpack the archive if you have not done so already:
|
|
|
|
|
2025-02-17 20:27:34 +01:00
|
|
|
tar -xf clzip[version].tar.lz
|
2025-02-17 18:33:31 +01:00
|
|
|
or
|
2025-02-17 20:27:34 +01:00
|
|
|
lzip -cd clzip[version].tar.lz | tar -xf -
|
2025-02-17 18:33:31 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2025-02-17 20:46:36 +01:00
|
|
|
If you are compiling on MinGW, use:
|
|
|
|
|
|
|
|
./configure CFLAGS+='-D __USE_MINGW_ANSI_STDIO'
|
|
|
|
|
2025-02-17 18:33:31 +01:00
|
|
|
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:38:50 +01:00
|
|
|
Or type 'make install-compress', which additionally compresses the
|
|
|
|
info manual and the man page after installation. (Installing
|
|
|
|
compressed docs may become the default in the future).
|
|
|
|
|
2025-02-17 20:34:56 +01:00
|
|
|
You can install only the program, the info manual or the man page by
|
2025-02-17 20:12:24 +01:00
|
|
|
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
|
|
|
|
-----------
|
2025-02-17 20:32:06 +01:00
|
|
|
You can also compile clzip into a separate directory.
|
|
|
|
To do this, you 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.
|
2025-02-17 20:05:47 +01:00
|
|
|
|
|
|
|
'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:46:36 +01:00
|
|
|
Copyright (C) 2010-2019 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.
|