The libarchive library provides a single interface for reading/writing various compression formats.
This package is known to build and work properly using an LFS-10.0 platform.
Download (HTTP): https://github.com/libarchive/libarchive/releases/download/v3.4.3/libarchive-3.4.3.tar.xz
Download MD5 sum: 4b216ea3015ecf8ae555a2026f9a6b73
Download size: 4.6 MB
Estimated disk space required: 40 MB (add 28 MB for tests)
Estimated build time: 0.4 SBU (add 1.0 SBU for tests)
libxml2-2.9.10, LZO-2.10, and Nettle-3.6
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libarchive
First, adapt the test suite to changes in glibc-2.32:
patch -Np1 -i ../libarchive-3.4.3-testsuite_fix-1.patch
Install libarchive by running the following commands:
./configure --prefix=/usr --disable-static && make
To test the results, issue: LC_ALL=C make check.
Now, as the root
user:
make install
--disable-static
: This
switch prevents installation of static versions of the libraries.
--without-xml2
: This switch sets expat
for xar archive format support instead of preferred libxml2 if both
packages are installed.
--without-nettle
: This switch sets
OpenSSL for crypto support instead of preferred Nettle if both
packages are installed.
Last updated on 2020-08-16 11:31:07 -0700