aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-install-options.cli
blob: cd206ffbf4a9ef191778be49e92a8bf83e1ad939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// file      : bpkg/pkg-install-options.cli
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/configuration-options.cli>;

"\section=1"
"\name=bpkg-pkg-install"
"\summary=install package"

namespace bpkg
{
  {
    "<options> <pkg>",

    "\h|SYNOPSIS|

     \c{\b{bpkg pkg-install} [<options>] <pkg>...}

     \h|DESCRIPTION|

     The \cb{pkg-install} command installs one or more packages. Underneath,
     this command doesn't do much more than run \cb{b install}. The
     installation directory can be specified when creating the configuration
     (\l{bpkg-cfg-create(1)}) with the \cb{config.install.root} configuration
     variable."

     // @@ Would be nice to be able to specify the root in the command.
     //    Probably an option to specify additional configuration vars.
  }

  class pkg_install_options: configuration_options
  {
    "\h|PKG-INSTALL OPTIONS|"
  };
}