aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-install.cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-17 13:20:32 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2018-05-17 16:22:42 +0300
commit3908754edadb9afbe0f977788cc34456cbdffc5a (patch)
treed820f098750b8492dac9fdb5be6d26bea4edb39a /bpkg/pkg-install.cli
parent2ea3d11ac1d5b6069268709ca0125d2e90377d93 (diff)
Add support for --all|-a to pkg-{update,clean,test,install,uninstall}
Diffstat (limited to 'bpkg/pkg-install.cli')
-rw-r--r--bpkg/pkg-install.cli15
1 files changed, 12 insertions, 3 deletions
diff --git a/bpkg/pkg-install.cli b/bpkg/pkg-install.cli
index 95edef3..75d13a0 100644
--- a/bpkg/pkg-install.cli
+++ b/bpkg/pkg-install.cli
@@ -15,16 +15,20 @@ namespace bpkg
"\h|SYNOPSIS|
- \c{\b{bpkg pkg-install}|\b{install} [<options>] [<vars>] (<pkg> [<vars>])...}
+ \c{\b{bpkg pkg-install}|\b{install} [<options>] [<vars>] (<pkg> [<vars>])...\n
+ \b{bpkg pkg-install}|\b{install} [<options>] [<vars>] \b{--all}|\b{-a}}
\h|DESCRIPTION|
- The \cb{pkg-install} command installs one or more packages. Additionally,
- immediate or all dependencies of the specified packages can be also
+ The \cb{pkg-install} command installs the specified packages (the first
+ form) or all held packages (the second form, see \l{bpkg-pkg-status(1)}).
+ Additionally, immediate or all dependencies of these packages can be also
installed by specifying the \c{\b{--immediate}|\b{-i}} or
\c{\b{--recursive}|\b{-r}} options, respectively. Underneath, this
command doesn't do much more than run \cb{b install}.
+ In the first form the specified packages must have been previously
+ configured with \l{bpkg-pkg-build(1)} or \l{bpkg-pkg-configure(1)}.
Additional command line variables (<vars>, normally \cb{config.*}) can be
passed to the build system by either specifying them before the packages,
in which case they apply to the whole configuration, or after a specific
@@ -45,6 +49,11 @@ namespace bpkg
{
"\h|PKG-INSTALL OPTIONS|"
+ bool --all|-a
+ {
+ "Install all held packages."
+ }
+
bool --immediate|-i
{
"Also install immediate dependencies."