Remove trailing whitespace.
[dragonfly.git] / contrib / libarchive / INSTALL
1 How you install this depends on which distribution you
2 are using and what target you're compiling for:
3
4 FROM A PACKAGED DISTRIBUTION TO ANY SYSTEM
5
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
12
13 If you need to customize the target directories, use
14     ./configure --help
15 to list the configure options.
16
17 FROM CVS TO FreeBSD
18
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
23
24 FROM CVS TO A PACKAGED DISTRIBUTION
25
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
31
32 You should be able to use the following command to build a distribution:
33     make distfile
34
35 The result will be a file named libarchive-<version>.tar.gz in
36 the object directory.
37
38 $FreeBSD: src/lib/libarchive/INSTALL,v 1.1 2004/08/07 03:09:28 kientzle Exp $
39