+debhelper (0.20) unstable; urgency=low
+
+ * Added dh_installinit, which installs an init.d script, and edits the
+ postinst, postrm, etc.
+
+ -- Joey Hess <joeyh@master.debian.org> Fri, 14 Nov 1997 00:45:53 -0500
+
debhelper (0.19) unstable; urgency=low
* dh_installmenu.1: menufile is in section 5, not 1.
dh_installmenu \- install debian menu files into package build directories
.SH SYNOPSIS
.B dh_installmenu
-.I "[-v] [-a] [-i] [-ppackage] [-Ptmpdir]"
+.I "[-v] [-a] [-i] [-ppackage] [-Ptmpdir] [-n]"
.SH "DESCRIPTION"
dh_installmenu is a debhelper program that is responsible for installing
-fils used by the debian menu package into package build directories.
+files used by the debian menu package into package build directories.
.P
It also automatically generates the postinst and postrm commands needed to
interface with the debian menu package. See
.B \-ppackage
Install menu files into the package named "package".
.TP
-.B \-n
-Do not automatically generate code.
-.TP
.B \-Ptmpdir
Use "tmpdir" for package build directory.
+.TP
+.B \-n
+Do not modify postinst/postrm scripts.
.SH NOTES
The
.B \-a
# Argument processing and global variable initialization is below.
# Parse command line.
-set -- `getopt xvianp:P: $*`
+set -- `getopt xvidrnap:P:u: $*`
for i; do
case "$i"
DH_EXCLUDE=1
shift
;;
+ -d)
+ DH_D_FLAG=1
+ shift
+ ;;
+ -r)
+ DH_R_FLAG=1
+ shift
+ ;;
-P)
DH_TMPDIR="$2"
shift
shift
;;
+ -u)
+ DH_U_PARAMS="$2"
+ shift
+ shift
+ ;;
--)
shift
break