Difference between revisions of "Libarchive"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) (Added page) |
Weibullguy (talk | contribs) m |
||
(One intermediate revision by one other user not shown) | |||
Line 19: | Line 19: | ||
|<i>--disable-bsdcpio</i>: Disable building the bsdcpio program. | |<i>--disable-bsdcpio</i>: Disable building the bsdcpio program. | ||
|} | |} | ||
+ | |||
+ | == Dependencies == | ||
+ | |||
+ | === Required === | ||
+ | * [[sharutils]] | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 96: | Line 101: | ||
|is a programming library that can create and read several different streaming archive formats. | |is a programming library that can create and read several different streaming archive formats. | ||
|} | |} | ||
+ | |||
+ | [[Category:General Libs]] |
Latest revision as of 11:17, 25 January 2009
Download Source: | http://people.freebsd.org/~kientzle/libarchive/src/libarchive-2.4.17.tar.gz |
---|
Contents
Introduction to Libarchive
Libarchive is a programming library that can create and read several different streaming archive formats.
Project Homepage: http://people.freebsd.org/~kientzle/libarchive/
Configuration Information
bsdtar and bsdcpio are the actual names of the programs. They will not overwrite the tar and cpio binaries that you may already have installed.
--disable-bsdtar: Disable building the bsdtar program. |
--disable-bsdcpio: Disable building the bsdcpio program. |
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr --enable-bsdtar --enable-bsdcpio && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" \ ./configure --prefix=/usr --enable-bsdtar --enable-bsdcpio && make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ --libdir=/usr/lib32 --enable-bsdtar --enable-bsdcpio && make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr \ --libdir=/usr/lib64 --enable-bsdtar --enable-bsdcpio && make
Install the package:
make install
Contents
Installed Directories: | None |
---|---|
Installed Programs: | bsdtar, bsdcpio |
Installed Libraries: | libarchive.{a,la,so} |
Short Descriptions
bsdtar | is an archiving program is built on libarchive. |
---|---|
bsdcpio | is an archiving program is built on libarchive. |
libarchive | is a programming library that can create and read several different streaming archive formats. |