]> git.donarmstrong.com Git - debhelper.git/blob - debhelper.pod
minimal build system option documentation
[debhelper.git] / debhelper.pod
1 =head1 NAME
2
3 debhelper - the debhelper tool suite
4
5 =head1 SYNOPSIS
6
7 B<dh_>I<*> [B<-v>] [B<-a>] [B<-i>] [B<-s>] [B<--no-act>] [B<-ppackage>] [B<-Npackage] [-Ptmpdir>]
8
9 =head1 DESCRIPTION
10
11 Debhelper is used to help you build a debian package. The philosophy behind
12 debhelper is to provide a collection of small, simple, and easily
13 understood tools that are used in debian/rules to automate various common
14 aspects of building a package. This means less work for you, the packager.
15 It also, to some degree means that these tools can be changed if debian
16 policy changes, and packages that use them will require only a rebuild to
17 comply with the new policy.
18
19 A typical debian/rules file that uses debhelper will call several debhelper
20 commands in sequence, or use L<dh(1)> to automate this process. Examples of
21 rules files that use debhelper are in F</usr/share/doc/debhelper/examples/>
22
23 To create a new debian package using debhelper, you can just copy one of
24 the sample rules files and edit it by hand. Or you can try the dh-make
25 package, which contains a L<dh_make|dh_make(1)> command that partially
26 automates the process. For a more gentle introduction, the maint-guide debian
27 package contains a tutorial about making your first package using debhelper.
28
29 =head1 DEBHELPER COMMANDS
30
31 Here is the complete list of available debhelper commands. See their man
32 pages for additional documentation.
33
34 =over 4
35
36 #LIST#
37
38 =back
39
40 If a program's name starts with "dh_", and the program is not on the above
41 list, then it is not part of the debhelper package, but it should still
42 work like the other programs described on this page.
43
44 =head1 DEBHELPER CONFIG FILES
45
46 Many debhelper commands make use of files in F<debian/> to control what they
47 do. Besides the common F<debian/changelog> and F<debian/control>, which are
48 in all packages, not just those using debhelper, some additional files can
49 be used to configure the behavior of specific debhelper commands. These
50 files are typically named debian/package.foo (where "package" of course,
51 is replaced with the package that is being acted on).
52
53 For example, dh_installdocs uses files named debian/package.docs to list
54 the documentation files it will install. See the man pages of individual
55 commands for details about the names and formats of the files they use.
56 Generally, these files will list files to act on, one file per line. Some
57 programs in debhelper use pairs of files and destinations or slightly more
58 complicated formats.
59
60 Note that if a package is the first (or only) binary package listed in
61 debian/control, debhelper will use debian/foo if no debian/package.foo
62 file can be found.
63
64 In some rare cases, you may want to have different versions of these files
65 for different architectures or OSes. If files named debian/package.foo.ARCH
66 or debian/package.foo.OS exist, where "ARCH" and "OS" are the same as the
67 output of  "dpkg-architecture -qDEB_HOST_ARCH" /
68 "dpkg-architecture -qDEB_HOST_ARCH_OS",
69 then they will be used in preference to other, more general files.
70
71 In many cases, these config files are used to specify various types of
72 files. Documentation or example files to install, files to move, and so on.
73 When appropriate, in cases like these, you can use standard shell wildcard
74 characters ('?' and '*' and '[..]' character classes) in the files.
75
76 You can also put comments in these files; lines beginning with "#" are
77 ignored.
78
79 =head1 SHARED DEBHELPER OPTIONS
80
81 The following command line options are supported by all debhelper programs.
82
83 =over 4
84
85 =item B<-v>, B<--verbose>
86
87 Verbose mode: show all commands that modify the package build directory.
88
89 =item B<--no-act>
90
91 Do not really do anything. If used with -v, the result is that the command
92 will output what it would have done.
93
94 =item B<-a>, B<--arch>
95
96 Act on all architecture dependent packages.
97
98 =item B<-i>, B<--indep>
99
100 Act on all architecture independent packages.
101
102 =item B<->I<ppackage>, B<--package=>I<package>
103
104 Act on the package named "package". This option may be specified multiple
105 times to make debhelper operate on a given set of packages.
106
107 =item B<-s>, B<--same-arch>
108
109 This is a smarter version of the -a flag, that is used in some rare
110 circumstances. It understands that if the control file lists "Architecture: i386"
111 for the package, the package should not be acted on on other architectures. So
112 this flag makes the command act on all "Architecture: any" packages, as well
113 as on any packages that have the current architecture explicitly specified.
114 Contrast to the -a flag, which makes the command work on all packages that
115 are not architecture independent.
116
117 =item B<-N>I<package>, B<--no-package=>I<package>
118
119 Do not act on the specified package even if an -a, -i, or -p option lists
120 the package as one that should be acted on.
121
122 =item B<--remaining-packages>
123
124 Do not act on the packages which have already been acted on by this debhelper
125 command earlier (i.e. if the command is present in the package debhelper log).
126 For example, if you need to call the command with special options only for a
127 couple of binary packages, pass this option to the last call of the command to
128 process the rest of packages with default settings. 
129
130 =item B<--ignore=>I<file>
131
132 Ignore the specified file. This can be used if debian/ contains a debhelper
133 config file that a debhelper command should not act on. Note that
134 debian/compat, debian/control, and debian/changelog can't be ignored, but
135 then, there should never be a reason to ignore those files.
136
137 For example, if upstream ships a debian/init that you don't want
138 dh_installinit to install, use --ignore=debian/init
139
140 =item B<-P>I<tmpdir>, B<--tmpdir=>I<tmpdir>
141
142 Use "tmpdir" for package build directory. The default is debian/<package>
143
144 =item B<--mainpackage=>I<package>
145
146 This little-used option changes the package which debhelper considers the
147 "main package", that is, the first one listed in debian/control, and the
148 one for which debian/foo files can be used instead of the usual
149 debian/package.foo files.
150
151 =back
152
153 =head1 COMMON DEBHELPER OPTIONS
154
155 The following command line options are supported by some debhelper programs.
156 See the man page of each program for a complete explanation of what each
157 option does.
158
159 =over 4
160
161 =item B<-n>
162
163 Do not modify postinst/postrm/etc scripts.
164
165 =item B<-X>I<item>, B<--exclude=>I<item>
166
167 Exclude an item from processing. This option may be used multiple times,
168 to exclude more than one thing.
169
170 =item B<-A>, B<--all>
171
172 Makes files or other items that are specified on the command line take effect
173 in ALL packages acted on, not just the first.
174
175 =back
176
177 =head1 BUILD SYSTEM OPTIONS
178
179 The following command line options are supported by all of the dh_auto_*
180 debhelper programs. These programs support a variety of build systems,
181 and normally heuristically determine which to use, and how to use them.
182 You can use these command line options to override the default behavior.
183
184 =over 4
185
186 =item B<-S>I<buildsystem>, B<--buildsystem=>I<buildsystem>
187
188 Force use of the specified I<buildsystem>, instead of trying to auto-select
189 one which might be applicable for the package.
190
191 =item B<-D>I<directory>, B<--sourcedirectory=>I<directory>
192
193 Assume that the original package source tree is at the specified
194 I<directory> rather than the top level directory of the Debian
195 source package tree.
196
197 =item B<-B>[I<directory>], B<--builddirectory>=[I<directory>]
198
199 Enable out of source building and use the specified I<directory> as the build
200 directory. If I<directory> parameter is omitted, a default build directory
201 will chosen.
202
203 If this option is not specified, building will be done in source by default
204 unless the build system requires or prefers out of source tree building.
205 In such a case, the default build directory will be used even if
206 L<--builddirectory> is not specified.
207
208 If the build system prefers out of source tree building but still
209 allows in source building, the latter can be re-enabled by passing a build
210 directory path that is the same as the source directory path.
211
212 =item B<--list>, B<-l>
213
214 List all build systems supported by debhelper on this system. The list
215 includes both default and third party build systems (marked as such). Also
216 shows which build system would be automatically selected, or which one
217 is manually specified with the I<--buildsystem> option.
218
219 =item B<--help-buildsystem>
220
221 Print detailed help about a build system which would be auto-selected or which
222 is manually specified with the L<--buildsystem> option.
223
224 =back
225
226 =head1 NOTES
227
228 =head2 Multiple binary package support
229
230 If your source package generates more than one binary package, debhelper
231 programs will default to acting on all binary packages when run. If your
232 source package happens to generate one architecture dependent package, and
233 another architecture independent package, this is not the correct behavior,
234 because you need to generate the architecture dependent packages in the
235 binary-arch debian/rules target, and the architecture independent packages
236 in the binary-indep debian/rules target.
237
238 To facilitate this, as well as give you more control over which packages
239 are acted on by debhelper programs, all debhelper programs accept the
240 B<-a>, B<-i>, B<-p>, and B<-s> parameters. These parameters are cumulative. 
241 If none are given, debhelper programs default to acting on all packages listed
242 in the control file.
243
244 =head2 Automatic generation of debian install scripts
245
246 Some debhelper commands will automatically generate parts of debian
247 maintainer scripts. If you want these automatically generated things
248 included in your existing debian maintainer scripts, then you need to add
249 "#DEBHELPER#" to your scripts, in the place the code should be added.
250 "#DEBHELPER#" will be replaced by any auto-generated code when you run
251 dh_installdeb. 
252
253 If a script does not exist at all and debhelper needs to add something to
254 it, then debhelper will create the complete script.
255
256 All debhelper commands that automatically generate code in this way let it
257 be disabled by the -n parameter (see above).
258
259 Note that the inserted code will be shell code, so you cannot directly use
260 it in a perl script. If you would like to embed it into a perl script, here
261 is one way to do that (note that I made sure that $1, $2, etc are set with
262 the set command):
263
264   my $temp="set -e\nset -- @ARGV\n" . << 'EOF';
265   #DEBHELPER#
266   EOF
267   system ($temp) / 256 == 0
268         or die "Problem with debhelper scripts: $!";
269
270 =head2 Automatic generation of miscellaneous dependencies.
271
272 Some debhelper commands may make the generated package need to depend on
273 some other packages. For example, if you use L<dh_installdebconf(1)>, your
274 package will generally need to depend on debconf. Or if you use
275 L<dh_installxfonts(1)>, your package will generally need to depend on a
276 particular version of xutils. Keeping track of these miscellaneous
277 dependencies can be annoying since they are dependant on how debhelper does
278 things, so debhelper offers a way to automate it.
279
280 All commands of this type, besides documenting what dependencies may be
281 needed on their man pages, will automatically generate a substvar called
282 ${misc:Depends}. If you put that token into your debian/control file, it
283 will be expanded to the dependencies debhelper figures you need. 
284
285 This is entirely independent of the standard ${shlibs:Depends} generated by
286 L<dh_makeshlibs(1)>, and the ${perl:Depends} generated by L<dh_perl(1)>.
287 You can choose not to use any of these, if debhelper's guesses don't match
288 reality.
289
290 =head2 Package build directories
291
292 By default, all debhelper programs assume that the temporary directory used
293 for assembling the tree of files in a package is debian/<package>.
294
295 Sometimes, you might want to use some other temporary directory. This is
296 supported by the -P flag. For example, "dh_installdocs -Pdebian/tmp", will
297 use debian/tmp as the temporary directory. Note that if you use -P, the 
298 debhelper programs can only be acting on a single package at a time. So if 
299 you have a package that builds many binary packages, you will need to also 
300 use the -p flag to specify which binary package the debhelper program will
301 act on.
302
303 =head2 Debhelper compatibility levels
304
305 From time to time, major non-backwards-compatible changes need to be made
306 to debhelper, to keep it clean and well-designed as needs change and its
307 author gains more experience. To prevent such major changes from breaking
308 existing packages, the concept of debhelper compatibility levels was 
309 introduced. You tell debhelper which compatibility level it should use, and
310 it modifies its behavior in various ways.
311
312 Tell debhelper what compatibility level to use by writing a number to
313 debian/compat. For example, to turn on V7 mode:
314
315   % echo 7 > debian/compat
316
317 Unless otherwise indicated, all debhelper documentation assumes that you
318 are using the most recent compatibility level, and in most cases does not
319 indicate if the behavior is different in an earlier compatibility level, so
320 if you are not using the most recent compatibility level, you're advised to
321 read below for notes about what is different in earlier compatibility
322 levels.
323
324 These are the available compatibility levels:
325
326 =over 4
327
328 =item V1
329
330 This is the original debhelper compatibility level, and so it is the default
331 one. In this mode, debhelper will use debian/tmp as the package tree
332 directory for the first binary package listed in the control file, while using
333 debian/<package> for all other packages listed in the control file.
334
335 This mode is deprecated.
336
337 =item V2
338
339 In this mode, debhelper will consistently use debian/<package>
340 as the package tree directory for every package that is built.
341
342 This mode is deprecated.
343
344 =item V3
345
346 This mode works like V2, with the following additions:
347
348 =over 8
349
350 =item -
351
352 Debhelper config files support globbing via * and ?, when appropriate. To
353 turn this off and use those characters raw, just prefix with a backslash.
354
355 =item -
356
357 dh_makeshlibs makes the postinst and postrm scripts call ldconfig.
358
359 =item -
360
361 Every file in etc/ is automatically flagged as a conffile by dh_installdeb.
362
363 =back
364
365 This mode is deprecated.
366
367 =item V4
368
369 Changes from V3 are:
370
371 =over 8
372
373 =item -
374
375 dh_makeshlibs -V will not include the debian part of the version number in
376 the generated dependency line in the shlibs file.
377
378 =item -
379
380 You are encouraged to put the new ${misc:Depends} into debian/control to
381 supplement the ${shlibs:Depends} field.
382
383 =item -
384
385 dh_fixperms will make all files in bin/ directories and in etc/init.d 
386 executable.
387
388 =item -
389
390 dh_link will correct existing links to conform with policy.
391
392 =back
393
394 This mode is deprecated.
395
396 =item V5
397
398 Changes from V4 are:
399
400 =over 8
401
402 =item -
403
404 Comments are ignored in debhelper config files.
405
406 =item -
407
408 dh_strip --dbg-package now specifies the name of a package to put debugging
409 symbols in, not the packages to take the symbols from.
410
411 =item -
412
413 dh_installdocs skips installing empty files.
414
415 =item -
416
417 dh_install errors out if wildcards expand to nothing.
418
419 =back
420
421 =item V6
422
423 Changes from V5 are:
424
425 =over 8
426
427 =item -
428
429 Commands that generate maintainer script fragments will order the
430 fragments in reverse order for the prerm and postrm scripts.
431
432 =item -
433
434 dh_installwm will install a slave manpage link for x-window-manager.1.gz,
435 if it sees the man page in usr/share/man/man1 in the package build
436 directory.
437
438 =item -
439
440 dh_builddeb did not previously delete everything matching
441 DH_ALWAYS_EXCLUDE, if it was set to a list of things to exclude, such as
442 "CVS:.svn:.git". Now it does.
443
444 =item -
445
446 dh_installman allows overwriting existing man pages in the package build
447 directory. In previous compatibility levels it silently refuses to do this.
448
449 =back
450
451 =item V7
452
453 This is the recommended mode of operation.
454
455 Changes from V6 are:
456
457 =over 8
458
459 =item -
460
461 dh_install, will fall back to looking for files in debian/tmp if it doesn't
462 find them in the current directory (or wherever you tell it look using
463 --sourcedir). This allows dh_install to interoperate with dh_auto_install,
464 which installs to debian/tmp, without needing any special parameters.
465
466 =item -
467
468 dh_clean will read debian/clean and delete files listed there.
469
470 =item -
471
472 dh_clean will delete toplevel *-stamp files.
473
474 =item -
475
476 dh_installchangelogs will guess at what file is the upstream changelog if
477 none is specified.
478
479 =back
480
481 =back
482
483 =head2 Doc directory symlinks
484
485 Sometimes it is useful to make a package not contain a /usr/share/doc/package
486 directory at all, instead placing just a dangling symlink in the binary
487 package, that points to some other doc directory. Policy says this is ok if
488 your package depends on the package whose doc directory it uses. To
489 accomplish this, just don't tell debhelper to install any documentation
490 files into the package, and use dh_link to set up the symlink (or do it by
491 hand), and debhelper should do the right thing: notice it is a dangling
492 symlink and not try to install a copyright file or changelog.
493
494 =head2 udebs
495
496 Debhelper includes support for udebs. To create a udeb with debhelper,
497 add "XC-Package-Type: udeb" to the package's stanza in debian/control, and
498 build-depend on debhelper (>= 4.2). Debhelper will try to create udebs that
499 comply with debian-installer policy, by making the generated package files
500 end in ".udeb", not installing any documentation into a udeb, skipping over
501 preinst, postrm, prerm, and config scripts, etc.
502
503 =head2 Other notes
504
505 In general, if any debhelper program needs a directory to exist under
506 debian/, it will create it. I haven't bothered to document this in all the
507 man pages, but for example, dh_installdeb knows to make debian/<package>/DEBIAN/
508 before trying to put files there, dh_installmenu knows you need a
509 debian/<package>/usr/share/menu/ before installing the menu files, etc.
510
511 Once your package uses debhelper to build, be sure to add
512 debhelper to your Build-Depends line in debian/control. You should
513 build-depend on a version of debhelper equal to (or greater than) the
514 debhelper compatibility level your package uses. So if your package used
515 compatibility level 7:
516
517   Build-Depends: debhelper (>= 7)
518
519 =head1 ENVIRONMENT
520
521 =over 4
522
523 =item DH_VERBOSE
524
525 Set to 1 to enable verbose mode. Debhelper will output every command it runs
526 that modifies files on the build system.
527
528 =item DH_COMPAT
529
530 Temporarily specifies what compatibility level debhelper should run at,
531 overriding any value in debian/compat.
532
533 =item DH_NO_ACT
534
535 Set to 1 to enable no-act mode.
536
537 =item DH_OPTIONS
538
539 Anything in this variable will be prepended to the command line arguments
540 of all debhelper commands. Command-specific options will be ignored by 
541 commands that do not support them. 
542
543 This is useful in some situations, for example, if you need to pass -p to
544 all debhelper commands that will be run. One good way to set DH_OPTIONS is
545 by using "Target-specific Variable Values" in your debian/rules file. See
546 the make documentation for details on doing this.
547
548 =item DH_ALWAYS_EXCLUDE
549
550 If set, this adds the value the variable is set to to the -X options of all
551 commands that support the -X option. Moreover, dh_builddeb will rm -rf
552 anything that matches the value in your package build tree.
553
554 This can be useful if you are doing a build from a CVS source tree, in
555 which case setting DH_ALWAYS_EXCLUDE=CVS will prevent any CVS directories
556 from sneaking into the package you build. Or, if a package has a source
557 tarball that (unwisely) includes CVS directories, you might want to export
558 DH_ALWAYS_EXCLUDE=CVS in debian/rules, to make it take effect wherever
559 your package is built.
560
561 Multiple things to exclude can be separated with colons, as in
562 DH_ALWAYS_EXCLUDE=CVS:.svn
563
564 =back
565
566 =head1 SEE ALSO
567
568 =over 4
569
570 =item F</usr/share/doc/debhelper/examples/>
571
572 A set of example debian/rules files that use debhelper.
573
574 =item L<http://kitenet.net/~joey/code/debhelper/>
575
576 Debhelper web site.
577
578 =back
579
580 =head1 AUTHOR
581
582 Joey Hess <joeyh@debian.org>
583
584 =cut