diff options
author | B. Watson <yalhcru@gmail.com> | 2022-01-11 13:08:32 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-01-17 09:03:30 +0700 |
commit | 80ff04d62987392f2804cb137d108566d44a8ed1 (patch) | |
tree | 9de8c2774c7fd81b5c2136bde517630582f4678b /system/xar/README | |
parent | 7978e324d5b2aad21b6ea5a9862d97e32a7bbcf3 (diff) |
system/xar: Added (eXtensible ARchiver)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/xar/README')
-rw-r--r-- | system/xar/README | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/system/xar/README b/system/xar/README new file mode 100644 index 0000000000..3bc8e854ed --- /dev/null +++ b/system/xar/README @@ -0,0 +1,21 @@ +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. |