aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-uninstall.cli
blob: ba7f55a2854a0939fc0eada5497cbed2e54243e7 (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
37
// file      : bpkg/pkg-uninstall.cli
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/configuration.cli>;

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

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

    "\h|SYNOPSIS|

     \c{\b{bpkg pkg-uninstall}|\b{uninstall} [<options>] [<vars>] (<pkg> [<vars>])...}

     \h|DESCRIPTION|

     The \cb{pkg-uninstall} command uninstalls one or more packages that were
     previously installed with \l{bpkg-pkg-install(1)}. Underneath, this
     command doesn't do much more than run \cb{b uninstall}.

     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 all of them, or after a specific package, in
     which case they apply only to this package. See \l{bpkg-pkg-install(1)}
     for some examples."
  }

  class pkg_uninstall_options: configuration_options
  {
    "\h|PKG-UNINSTALL OPTIONS|"
  };
}