M
ModdingMyMind
Guest
***Last Build Based On Version 5.0.5 as of August 18, 2014***
What is XZ
XZ Utils is free general-purpose data compression software with high compression ratio. XZ Utils were written for POSIX-like systems, but also work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.
The core of the XZ Utils compression code is based on LZMA SDK, but it has been modified quite a lot to be suitable for XZ Utils. The primary compression algorithm is currently LZMA2, which is used inside the .xz container format. With typical files, XZ Utils create 30*% smaller output than gzip and 15*% smaller output than bzip2.
XZ Utils consist of several components:
1. liblzma is a compression library with API similar to that of zlib.
2. xz is a command line tool with syntax similar to that of gzip.
xzdec is a decompression-only tool smaller than the full-featured xz tool.
3. A set of shell scripts (xzgrep, xzdiff, etc.) have been adapted from gzip to ease viewing, grepping, and comparing compressed files.
4. Emulation of command line tools of LZMA Utils eases transition from LZMA Utils to XZ Utils.
5. While liblzma has a zlib-like API, liblzma doesn't include any file I/O functions. A separate I/O library is planned, which would abstract handling of .gz, .bz2, and .xz files with an easy to use API.
Source Code
The files have been signed with this OpenPGP key.
Further Information can be found maintained by Tukaani here
Git repository
Android port
XZ Utils makes managing .xz and .lzma (LZMA2) archives possible in Android APPs or tools .XZ Utils is easy to use and powerful . You may use it in your app or use it with the terminal emulator ( push binary to /system/bin and set permissions to 755 ). To download see Attachments below.
This has been compile as true static. No dynamic links whatsoever. No modifications to the source, and no modifications to the toolchain. This is about as legit as it can get. Because it is statically compiled this will work with even the latest Android L.
Licensing
The most interesting parts of XZ Utils (e.g. liblzma) are in the public domain. You can do whatever you want with the public domain parts.
Some parts of XZ Utils (e.g. build system and some utilities) are under different free software licenses such as GNU LGPLv2.1, GNU GPLv2, or GNU GPLv3.
What is XZ
XZ Utils is free general-purpose data compression software with high compression ratio. XZ Utils were written for POSIX-like systems, but also work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.
The core of the XZ Utils compression code is based on LZMA SDK, but it has been modified quite a lot to be suitable for XZ Utils. The primary compression algorithm is currently LZMA2, which is used inside the .xz container format. With typical files, XZ Utils create 30*% smaller output than gzip and 15*% smaller output than bzip2.
XZ Utils consist of several components:
1. liblzma is a compression library with API similar to that of zlib.
2. xz is a command line tool with syntax similar to that of gzip.
xzdec is a decompression-only tool smaller than the full-featured xz tool.
3. A set of shell scripts (xzgrep, xzdiff, etc.) have been adapted from gzip to ease viewing, grepping, and comparing compressed files.
4. Emulation of command line tools of LZMA Utils eases transition from LZMA Utils to XZ Utils.
5. While liblzma has a zlib-like API, liblzma doesn't include any file I/O functions. A separate I/O library is planned, which would abstract handling of .gz, .bz2, and .xz files with an easy to use API.
Source Code
The files have been signed with this OpenPGP key.
Further Information can be found maintained by Tukaani here
Git repository
Code:
git clone http://git.tukaani.org/xz.git
Android port
XZ Utils makes managing .xz and .lzma (LZMA2) archives possible in Android APPs or tools .XZ Utils is easy to use and powerful . You may use it in your app or use it with the terminal emulator ( push binary to /system/bin and set permissions to 755 ). To download see Attachments below.
This has been compile as true static. No dynamic links whatsoever. No modifications to the source, and no modifications to the toolchain. This is about as legit as it can get. Because it is statically compiled this will work with even the latest Android L.
Licensing
The most interesting parts of XZ Utils (e.g. liblzma) are in the public domain. You can do whatever you want with the public domain parts.
Some parts of XZ Utils (e.g. build system and some utilities) are under different free software licenses such as GNU LGPLv2.1, GNU GPLv2, or GNU GPLv3.
