Import libarchive-2.5.5.
[dragonfly.git] / contrib / libarchive / INSTALL
blob8275ed2e16e25c6bf9b75f34d743dacdc775fea5
1 How you install this depends on which distribution you
2 are using and what target you're compiling for:
4 FROM A PACKAGED DISTRIBUTION TO ANY SYSTEM
6 If you unpacked this from a tar.gz archive and have a "configure"
7 file, then you should be able to install it using the following common
8 steps:
9     ./configure
10     make
11     make install
13 If you need to customize the target directories, use
14     ./configure --help
15 to list the configure options.
17 FROM CVS TO FreeBSD
19 The source code from the FreeBSD CVS server can be
20 compiled as-is on any FreeBSD system, just use:
21     make
22     make install
24 FROM CVS TO A PACKAGED DISTRIBUTION
26 The source code from the FreeBSD CVS server can be used
27 to build a tar.gz archive suitable for later installation on
28 any system.  You'll need the following GNU tools installed:
29     autoconf (including aclocal and autoheader)
30     automake
32 You should be able to use the following command to build a distribution:
33     make distfile
35 The result will be a file named libarchive-<version>.tar.gz in
36 the object directory.
38 $FreeBSD: src/lib/libarchive/INSTALL,v 1.1 2004/08/07 03:09:28 kientzle Exp $