aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-clean-options.cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-18 07:58:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-18 07:58:04 +0200
commitf146720a3800fa2a9025a7326e0f0a2ce9048364 (patch)
treeef463d23a347032fe1c30e617223edd80bdf6278 /bpkg/pkg-clean-options.cli
parent9accdefc33940d713828195313ca1a0eb0de030f (diff)
Implement pkg-clean command
Diffstat (limited to 'bpkg/pkg-clean-options.cli')
-rw-r--r--bpkg/pkg-clean-options.cli27
1 files changed, 27 insertions, 0 deletions
diff --git a/bpkg/pkg-clean-options.cli b/bpkg/pkg-clean-options.cli
new file mode 100644
index 0000000..c9d9bca
--- /dev/null
+++ b/bpkg/pkg-clean-options.cli
@@ -0,0 +1,27 @@
+// file : bpkg/pkg-clean-options.cli
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+include <bpkg/pkg-common-options.cli>;
+
+/*
+"\section=1"
+"\name=bpkg-pkg-clean"
+
+"\h{SYNOPSIS}
+
+bpkg pkg-clean <pkg>"
+
+"\h{DESCRIPTION}
+
+The \cb{pkg-clean} command cleans the previously configured
+(\cb{pkg-configure}) package. Underneath, this command doesn't
+do much more than run (\cb{b clean})."
+*/
+
+namespace bpkg
+{
+ class pkg_clean_options: pkg_common_options
+ {
+ };
+}