slackbuilds/system/xar
B. Watson 83049cab39
system/xar: Updated for version 1.8dev+498.
Signed-off-by: B. Watson <urchlay@slackware.uk>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-11-25 22:12:45 +07:00
..
patches system/xar: Updated for version 1.8dev+498. 2023-11-25 22:12:45 +07:00
README
slack-desc
xar.SlackBuild system/xar: Updated for version 1.8dev+498. 2023-11-25 22:12:45 +07:00
xar.info system/xar: Updated for version 1.8dev+498. 2023-11-25 22:12:45 +07:00

README

xar (eXtensible ARchiver)

The XAR project aims to provide an easily extensible archive
format. Important design decisions include an easily extensible XML
table of contents (TOC) for random access to archived files, storing
the TOC at the beginning of the archive to allow for efficient
handling of streamed archives, the ability to handle files of
arbitrarily large sizes, the ability to choose independent encodings
for individual files in the archive, the ability to store checksums
for individual files in both compressed and uncompressed form, and the
ability to query the table of content's rich meta-data.

xar is used primarily for software install packages (.pkg files) for
macOS X.

To actually extract a .pkg file, do something like:

$ xar -x -f filename.pkg
$ zcat base.pkg/Payload | cpio -iv

You'll end up with Applications/ Library/ Resources/, etc.