bzip2: port bzip2 1.0.4 to busybox. note: bzip2 code resides

in separate directory (archival/bz/*)
and is covered by BSD-style license.
code size: 13k
This commit is contained in:
Denis Vlasenko
2007-10-13 03:36:03 +00:00
parent 11c23d7b99
commit 77f1ec1b9b
20 changed files with 3253 additions and 22 deletions

View File

@@ -127,6 +127,16 @@
" -c Write output to standard output\n" \
" -f Force"
#define bzip2_trivial_usage \
"[OPTION]... [FILE]..."
#define bzip2_full_usage \
"Compress FILE(s) with bzip2 algorithm.\n" \
"When FILE is '-' or unspecified, reads standard input. Implies -c." \
"\n\nOptions:\n" \
" -c Write output to standard output instead of FILE.bz\n" \
" -d Decompress\n" \
" -f Force"
#define busybox_notes_usage \
"Hello world!\n"
@@ -1201,7 +1211,7 @@
"Uncompress FILE (or standard input if FILE is '-')" \
"\n\nOptions:\n" \
" -c Write output to standard output\n" \
" -f Force read when source is a terminal\n" \
" -f Force\n" \
" -t Test compressed file integrity"
#define gunzip_example_usage \
"$ ls -la /tmp/BusyBox*\n" \
@@ -1218,7 +1228,7 @@
"\n\nOptions:\n" \
" -c Write output to standard output instead of FILE.gz\n" \
" -d Decompress\n" \
" -f Force write when destination is a terminal"
" -f Force"
#define gzip_example_usage \
"$ ls -la /tmp/busybox*\n" \
"-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/busybox.tar\n" \