summaryrefslogtreecommitdiff
path: root/archivers/libarchive/files/INSTALL
blob: 6da53c30f3364b919724804d984dacaf2781ea2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
On most Unix-like systems, you should be able to install libarchive
and bsdtar using the following common steps:
    ./configure
    make
    make install

If you need to customize the target directories or otherwise adjust
the build setting, use
    ./configure --help
to list the configure options.

To build and install only libarchive:
    ./configure
    make
    cd libarchive && make install

To build and install only bsdtar (assumes a suitable
libarchive is already installed on the system):
    ./configure
    cd tar && make && make install