Man page - dh_auto_install(1)
Packages contains this manual
- dh_installsysusers(1)
- dh_installdeb(1)
- dh_compress(1)
- dh_md5sums(1)
- debhelper(7)
- dh_installsystemduser(1)
- dh_builddeb(1)
- debhelper-compat-upgrade-checklist(7)
- dh_testroot(1)
- dh_installcron(1)
- dh_clean(1)
- dh_bugfiles(1)
- dh_dwz(1)
- dh_installcatalogs(1)
- dh_auto_clean(1)
- dh_installchangelogs(1)
- dh_lintian(1)
- dh_installman(1)
- dh(1)
- dh_movetousr(1)
- dh_assistant(1)
- dh_installdirs(1)
- dh_installudev(1)
- dh_installwm(1)
- dh_installmodules(1)
- dh_link(1)
- dh_fixperms(1)
- dh_installlogrotate(1)
- dh_installdocs(1)
- dh_ucf(1)
- dh_installinitramfs(1)
- dh_systemd_start(1)
- dh_prep(1)
- dh_listpackages(1)
- dh_strip(1)
- dh_movefiles(1)
- dh_installxfonts(1)
- dh_installdebconf(1)
- dh_systemd_enable(1)
- dh_installalternatives(1)
- dh_usrlocal(1)
- dh_auto_configure(1)
- dh_missing(1)
- dh_installinfo(1)
- dh_installmenu(1)
- dh_gencontrol(1)
- dh_install(1)
- dh_update_autotools_config(1)
- dh_auto_build(1)
- dh_installmanpages(1)
- dh_shlibdeps(1)
- dh_testdir(1)
- dh_installifupdown(1)
- dh_perl(1)
- dh_installinit(1)
- dh_installexamples(1)
- dh_icons(1)
- dh_auto_install(1)
- dh_installppp(1)
- dh_installtmpfiles(1)
- dh_installemacsen(1)
- dh_makeshlibs(1)
- dh_installsystemd(1)
- debhelper-obsolete-compat(7)
- dh_installgsettings(1)
- dh_auto_test(1)
- dh_installpam(1)
- dh_installmime(1)
- dh_installlogcheck(1)
apt-get install debhelper
Available languages:
en fr es pt ja deManual
DH_AUTO_INSTALL
NAMESYNOPSIS
DESCRIPTION
OPTIONS
SEE ALSO
AUTHOR
NAME
dh_auto_install - automatically runs make install or similar
SYNOPSIS
dh_auto_install [ build system options ] [ debhelper options ] [ -- params ]
DESCRIPTION
dh_auto_install is a debhelper program that tries to automatically install built files. It does so by running the appropriate command for the build system it detects the package uses. For example, if thereâs a Makefile and it contains a install target, then this is done by running make (or MAKE , if the environment variable is set). If there is a setup.py or Build.PL , it is used. Note that the Ant build system does not support installation, so dh_auto_install will not install files built using Ant.
In compat 14 or later, dh_auto_install will use debian/tmp as the default --destdir and should be moved from there to the appropriate package build directory using dh_install (1) or similar tools. Though if the single-binary addon for dh (1) is activated, then it will pass an explicit --destdir=debian/ package / to dh_auto_install .
For earlier compat levels then unless --destdir option is specified, the files are installed into debian/ package / if there is only one binary package. In the multiple binary package case, the files are instead installed into debian/tmp/ , and should be moved from there to the appropriate package build directory using dh_install (1) or similar tools.
DESTDIR is used to tell make where to install the files. If the Makefile was generated by MakeMaker from a Makefile.PL , it will automatically set PREFIX=/usr too, since such Makefiles need that.
This is intended to work for about 90% of packages. If it doesnât work, or tries to use the wrong install target, youâre encouraged to skip using dh_auto_install at all, and just run make install manually.
OPTIONS
See
"
BUILD SYSTEM OPTIONS
" in
debhelper
(7) for a list of common build system
selection and control options.
--destdir=
directory
Install files into the specified directory . If this option is not specified, destination directory is determined automatically as described in the " DESCRIPTION " section.
-- params
Pass params to the program that is run, after the parameters that dh_auto_install usually passes.
SEE ALSO
debhelper (7)
This program is a part of debhelper.
AUTHOR
Joey Hess <joeyh@debian.org>