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 12.2 platform.
Download (HTTP): https://github.com/libarchive/libarchive/releases/download/v3.7.4/libarchive-3.7.4.tar.xz
Download MD5 sum: 1bab4c1b443ecf4f23ff9881665e680a
Download size: 5.2 MB
Estimated disk space required: 42 MB (add 32 MB for tests)
Estimated build time: 0.4 SBU (add 0.6 SBU for tests)
LZO-2.10, Nettle-3.10, and pcre2-10.44
Install libarchive by running the following commands:
./configure --prefix=/usr --disable-static --without-expat && make
To test the results, issue: LC_ALL=C.UTF-8 make check.
          Now, as the root user:
        
make install
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
          --without-expat: This
          switch disables using expat for xar format support. Due to a bug
          the xar reader will loop infinitely if expat is used. The upstream
          prefers libxml2 for xar support anyway.
        
          --without-nettle: This switch sets
          OpenSSL for crypto support instead of preferred Nettle if both
          packages are installed.