File: INSTALL

package info (click to toggle)
libarchive 1.2.53-2etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 2,828 kB
  • ctags: 1,672
  • sloc: ansic: 14,492; sh: 8,791; yacc: 619; makefile: 159
file content (20 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (3)
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