Manpages DEBHELPERSection: Debhelper (1)Updated: 2002-04-11 Index Return to Main Contents NAMEdebhelper - the debhelper tool suiteSYNOPSISdh_* [-v] [-a] [-i] [-s] [--no-act] [-ppackage] [-Npackage] [-Ptmpdir]DESCRIPTIONDebhelper is used to help you build a debian package. The philosophy behind debhelper is to provide a collection of small, simple, and easily understood tools that are used in debian/rules to automate various common aspects of building a package. This means less work for you, the packager. It also, to some degree means that these tools can be changed if debian policy changes, and packages that use them will require only a rebuild to comply with the new policy.A typical debian/rules file that uses debhelper will call several debhelper commands in sequence. Debhelper commands are all named with a ``dh_'' prefix. Examples of rules files that use debhelper are in /usr/share/doc/debhelper/examples/ To create a new debian package using debhelper, you can just copy one of the sample rules files and edit it by hand. Or you can try the dh-make package, which contains a dh_make command that partially automates the process. For a more gentle introduction, the maint-guide debian package contains a tutorial about making your first package using debhelper. DEBHELPER COMMANDSHere is the complete list of available debhelper commands. See their man pages for additional documentation.
DEBHELPER CONFIG FILESMany debhelper commands make use of files in debian/ to control what they do. Besides the common debian/changelog and debian/control, which are in all packages, not just those using debhelper, some additional files can be used to configure the behavior of specific debhelper commands. These files are typically named debian/package.foo (where ``package'' of course, is replaced with the package that is being acted on).For example, dh_installdocs uses files named debian/package.docs to list the documentation files it will install. See the man pages of individual commands for details about the names and formats of the files they use. Note that if a package is the first (or only) binary package listed in debian/control, debhelper will use debian/foo if no debian/package.foo file can be found. In some rare cases, you may want to have different versions of these files for different architectures. If files named debian/package.foo.arch exist, where ``arch'' is the same as the output of ``dpkg --print-architecture'', then they will be used in preference to other, more general files. In many cases, these config files are used to specify various types of files. Documentation or example files to install, files to move, and so on. When appropriate, in cases like these, you can use standard shell wildcard characters ('?' and '*') in the files. SHARED DEBHELPER OPTIONSThe following command line options are supported by all debhelper programs.
COMMON DEBHELPER OPTIONSThe following command line options are supported by some debhelper programs. See the man page of each program for a complete explanation of what each option does.
NOTESMultiple binary package supportIf your source package generates more than one binary package, debhelper programs will default to acting on all binary packages when run. If your source package happens to generate one architecture dependent package, and another architecture independent package, this is not the correct behavior, because you need to generate the architecture dependent packages in the binary-arch debian/rules target, and the architecture independent packages in the binary-indep debian/rules target.To facilitate this, as well as give you more control over which packages are acted on by debhelper programs, all debhelper programs accept the -a, -i, -p, and -s parameters. These parameters are cumulative. If none are given, debhelper programs default to acting on all packages listed in the control file. See /usr/share/doc/debhelper/examples/rules.multi for an example of how to use this in a package that generates multiple binary packages. Automatic generation of debian install scriptsSome debhelper commands will automatically generate parts of debian install scripts. If you want these automatically generated things included in your debian install scripts, then you need to add ``#DEBHELPER#'' to your scripts, in the place the code should be added. ``#DEBHELPER#'' will be replaced by any auto-generated code when you run dh_installdeb.All scripts that automatically generate code in this way let it be disabled by the -n parameter (see above). Note that the inserted code will be shell code, so you cannot directly use it in a perl script. If you would like to embed it into a perl script, here is one way to do that (note that I made sure that $1, $2, etc are set with the set command):
my $temp="set -e\nset -- @ARGV\n" . << 'EOF'; #DEBHELPER# EOF system ($temp) / 256 == 0 or die "Problem with debhelper scripts: $!"; Automatic generation of miscellaneous dependencies.Some debhelper commands may make the generated package need to depend on some other packages. For example, if you use dh_installdebconf(1), your package will generally need to depend on debconf. Or if you use dh_installxfonts(1), your package will generally need to depend on a particular version of xutils. Keeping track of these miscellaneous dependencies can be annoying since they are dependant on how debhelper does things, so debhelper offers a way to automate it.All commands of this type, besides documenting what dependencies may be needed on their man pages, will automatically generate a substvar called ${misc:Depends}. If you put that token into your debian/control file, it will be expanded to the dependencies debhelper figures you need. This is entirely independent of the standard ${shlibs:Depends} generated by dh_makeshlibs(1), and the ${perl:Depends} generated by dh_perl(1). You can choose not to use any of these, if debhelper's guesses don't match reality. Package build directoriesBy default, all debhelper programs assume that the temporary directory used for assembling the tree of files in a package is debian/<package>.Sometimes, you might want to use some other temporary directory. This is supported by the -P flag. For example, ``dh_installdocs -Pdebian/tmp'', will use debian/tmp as the temporary directory. Note that if you use -P, the debhelper programs can only be acting on a single package at a time. So if you have a package that builds many binary packages, you will need to also use the -p flag to specify which binary package the debhelper program will act on. Debhelper compatibility levelsFrom time to time, major non-backwards-compatible changes need to be made to debhelper, to keep it clean and well-designed as needs change and its author gains more experience. To prevent such major changes from breaking existing packages, the concept of debhelper compatability levels was introduced. You tell debhelper which compatability level it should use, and it modifies its behavior in various ways.You tell debhelper what compatability level to use by writing a number to debian/compat. For example, to turn on V4 mode:
% echo 4 > debian/compatThese are the available compatablity levels:
Doc directory symlinksSometimes it is useful to make a package not contain a /usr/share/doc/package directory at all, instead placing just a dangling symlink in the binary package, that points to some other doc directory. Policy says this is ok if your package depends on the package whose doc directory it uses. To accomplish this, just don't tell debhelper to install any documentation files into the package, and use dh_link to set up the symlink (or do it by hand), and debhelper should do the right thing: notice it is a dangling symlink and not try to install a copyright file or changelog.Other notesIn general, if any debhelper program needs a directory to exist under debian/, it will create it. I haven't bothered to document this in all the man pages, but for example, dh_installdeb knows to make debian/<package>/DEBIAN/ before trying to put files there, dh_installmenu knows you need a debian/<package>/usr/lib/menu/ before installing the menu files, etc.If you are generating a debian package that has arch-indep and arch-dependent portions, and you are using dh_movefiles to move the arch-indep files out of debian/tmp, you need to make sure that dh_movefiles does this even if only the arch-dependent package is being built (for ports to other architectures). I handle this in the example rules file ``rules.multi'' by calling dh_movefiles in the install target. Once your package uses debhelper to build, be sure to add debhelper to your Build-Depends line in debian/control. ENVIRONMENT
SEE ALSO
AUTHORJoey Hess <joeyh@debian.org>
Index
This document was created by man2html, using the manual pages. Time: 16:12:44 GMT, May 08, 2025 |