diff options
author | joey <joey> | 2002-10-28 16:28:35 +0000 |
---|---|---|
committer | joey <joey> | 2002-10-28 16:28:35 +0000 |
commit | c0d066ddce232280756df9c5b218c3c6145001bb (patch) | |
tree | bf7940585514f7f5835f84766fd15a2115491dcc /dh_install | |
parent | 79cd10da45b0324c7e8e18c4f7daffbd1d245fab (diff) | |
download | debhelper-c0d066ddce232280756df9c5b218c3c6145001bb.tar.gz |
r559: * Added note to dh_installdebconf(1) about postinst sourcing debconf
confmodule. (Cf #106070)
* Added an example to dh_install(1). Closes: #166402
Diffstat (limited to 'dh_install')
-rwxr-xr-x | dh_install | 28 |
1 files changed, 24 insertions, 4 deletions
@@ -56,7 +56,7 @@ specified, you should not list destination directories in debian/package.install files or on the command line. Instead, dh_install will guess as follows: -Strip off debian/tmp from the front of the filename, of it is present, and +Strip off debian/tmp from the front of the filename, if it is present, and install into the dirname of the filename. So if the filename is debian/tmp/usr/bin, then that directory will be copied to debian/package/usr/. If the filename is debian/tmp/etc/passwd, it will be @@ -81,9 +81,8 @@ warned about. =item B<--sourcedir=dir> -Makes all source files relative to "dir". If this is specified, it is akin -to all the source files having "dir" prepended to them. By default, "dir" -is '.'. +Makes all source files be found under dir. If this is specified, it is akin +to all the source filenames having "dir/" prepended to them. To make dh_install behave like the old dh_movefiles, move your package.files file to package.install and call dh_install with @@ -185,6 +184,27 @@ if ($dh{LIST_MISSING}) { } } +=head1 EXAMPLE + +Suppose your package's upstream Makefile installs a binary, a man page, and +a library into appropriate subdirectories of debian/tmp. You want to put +the library into package libfoo, and the rest into package foo. Your rules +file will run "dh_install --sourcedir=debian/tmp". Make debian/foo.install +contain: + + usr/bin + usr/share/man/man1 + +While debian/libfoo.install contains: + + usr/libfoo*.so.* + +If you want a libfoo-dev package too, debian/libfoo-dev.install might contain: + + usr/include + usr/lib/libfoo*.so + usr/share/man/man3 + =head1 SEE ALSO L<debhelper(1)> |