libdpkg: Fix varbuf memory leak in pkg_source_version()
[dpkg.git] / man / dpkg-checkbuilddeps.pod
blob201efc7b384ce9031f8203537d6ee71f69dd470c
1 # dpkg manual page - dpkg-checkbuilddeps(1)
3 # Copyright © 2001 Joey Hess <joeyh@debian.org>
4 # Copyright © 2007-2013, 2015 Guillem Jover <guillem@debian.org>
5 # Copyright © 2008-2011 Raphaël Hertzog <hertzog@debian.org>
7 # This is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
20 =encoding utf8
22 =head1 NAME
24 dpkg-checkbuilddeps - check build dependencies and conflicts
26 =head1 SYNOPSIS
28 B<dpkg-checkbuilddeps>
29 [I<option>...]
30 [I<control-file>]
32 =head1 DESCRIPTION
34 This program checks the installed packages in the system against the build
35 dependencies and build conflicts listed in the control file. If any are
36 not met, it displays them and exits with a nonzero return code.
38 By default, B<debian/control> is read, but an alternate control filename
39 may be specified on the command line.
41 =head1 OPTIONS
43 =over
45 =item B<--admindir=>I<dir>
47 Change the location of the B<dpkg> database (since dpkg 1.14.0).
48 The default location is I<%ADMINDIR%>.
50 =item B<-A>
52 Ignore B<Build-Depends-Arch> and B<Build-Conflicts-Arch>
53 lines (since dpkg 1.16.4).
54 Use when only arch-indep packages will be built, or combine with
55 B<-B> when only a source package is to be built.
57 =item B<-B>
59 Ignore B<Build-Depends-Indep> and B<Build-Conflicts-Indep>
60 lines. Use when only arch-dep packages will be built, or combine with
61 B<-A> when only a source package is to be built.
63 =item B<-I>
65 Ignore built-in build depends and conflicts (since dpkg 1.18.2).
66 These are implicit dependencies that are usually required on a specific
67 distribution, the so called Build-Essential package set.
69 =item B<-d> I<build-depends-string>
71 =item B<-c> I<build-conflicts-string>
73 Use the given build dependencies/conflicts instead of those contained in the
74 I<debian/control> file (since dpkg 1.14.17).
76 =item B<-a> I<arch>
78 Check build dependencies/conflicts assuming that the package described in
79 the control file is to be built for the given host architecture instead of
80 the architecture of the current system (since dpkg 1.16.2).
82 =item B<-P> I<profile>[B<,>...]
84 Check build dependencies/conflicts assuming that the package described
85 in the control file is to be built for the given build profile(s)
86 (since dpkg 1.17.2).
87 The argument is a comma-separated list of profile names.
89 =item B<-?>, B<--help>
91 Show the usage message and exit.
93 =item B<--version>
95 Show the version and exit.
97 =back
99 =head1 ENVIRONMENT
101 =over
103 =item B<DEB_BUILD_PROFILES>
105 If set, it will be used as the active build profile(s) for the package
106 being built. It is a space separated list of profile names. Overridden
107 by the B<-P> option.
109 =item B<DPKG_COLORS>
111 Sets the color mode (since dpkg 1.18.5).
112 The currently accepted values are: B<auto> (default), B<always> and
113 B<never>.
115 =item B<DPKG_NLS>
117 If set, it will be used to decide whether to activate Native Language Support,
118 also known as internationalization (or i18n) support (since dpkg 1.19.0).
119 The accepted values are: B<0> and B<1> (default).
121 =back