aboutsummaryrefslogtreecommitdiff
path: root/archival/dpkg.c
diff options
context:
space:
mode:
authorPere Orga <gotrunks@gmail.com>2011-03-27 22:40:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-03-27 22:40:30 +0200
commit1f4447b2d439e6f11d95746bb5f611c353305859 (patch)
tree0f47681009046a12ee050b989b838c68493a6a2e /archival/dpkg.c
parent700fbc308dd1f2e063180786cddfcc4abd6c10c0 (diff)
downloadbusybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.gz
busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.tar.bz2
busybox-w32-1f4447b2d439e6f11d95746bb5f611c353305859.zip
move help text from include/usage.src.h to archival/*.c
Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r--archival/dpkg.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c
index c37ae3349..f8e349d09 100644
--- a/archival/dpkg.c
+++ b/archival/dpkg.c
@@ -28,6 +28,34 @@
28 * 28 *
29 */ 29 */
30 30
31//usage:#define dpkg_trivial_usage
32//usage: "[-ilCPru] [-F OPT] PACKAGE"
33//usage:#define dpkg_full_usage "\n\n"
34//usage: "Install, remove and manage Debian packages\n"
35//usage: "\nOptions:"
36//usage: IF_LONG_OPTS(
37//usage: "\n -i,--install Install the package"
38//usage: "\n -l,--list List of installed packages"
39//usage: "\n --configure Configure an unpackaged package"
40//usage: "\n -P,--purge Purge all files of a package"
41//usage: "\n -r,--remove Remove all but the configuration files for a package"
42//usage: "\n --unpack Unpack a package, but don't configure it"
43//usage: "\n --force-depends Ignore dependency problems"
44//usage: "\n --force-confnew Overwrite existing config files when installing"
45//usage: "\n --force-confold Keep old config files when installing"
46//usage: )
47//usage: IF_NOT_LONG_OPTS(
48//usage: "\n -i Install the package"
49//usage: "\n -l List of installed packages"
50//usage: "\n -C Configure an unpackaged package"
51//usage: "\n -P Purge all files of a package"
52//usage: "\n -r Remove all but the configuration files for a package"
53//usage: "\n -u Unpack a package, but don't configure it"
54//usage: "\n -F depends Ignore dependency problems"
55//usage: "\n -F confnew Overwrite existing config files when installing"
56//usage: "\n -F confold Keep old config files when installing"
57//usage: )
58
31#include "libbb.h" 59#include "libbb.h"
32#include <fnmatch.h> 60#include <fnmatch.h>
33#include "archive.h" 61#include "archive.h"