Loading createmanpages +6 −2 Original line number Diff line number Diff line Loading @@ -3,14 +3,18 @@ MANDIR=debian mkdir -p $MANDIR VERSION=`dpkg-parsechangelog | awk '/^Version:/ {print $2}' | sed -e 's/^[0-9]*://' -e 's/-.*//' -e 's/[+~]dfsg$//'` NAME=`grep "^Description:" debian/control | sed 's/^Description: *//'` PROGNAME=`grep "^Package:" debian/control | sed 's/^Package: *//'` AUTHOR=".SH AUTHOR\nThis manpage was written by $DEBFULLNAME for the Debian distribution and can be used for any other usage of the program. " progname=<PROGNAME> # If program name is different from package name or title should be # different from package short description change this here progname=${PROGNAME} help2man --no-info --no-discard-stderr --help-option=" " \ --name='<optional description of the program>' \ --name="$NAME" \ --version-string="$VERSION" ${progname} > $MANDIR/${progname}.1 echo $AUTHOR >> $MANDIR/${progname}.1 Loading Loading
createmanpages +6 −2 Original line number Diff line number Diff line Loading @@ -3,14 +3,18 @@ MANDIR=debian mkdir -p $MANDIR VERSION=`dpkg-parsechangelog | awk '/^Version:/ {print $2}' | sed -e 's/^[0-9]*://' -e 's/-.*//' -e 's/[+~]dfsg$//'` NAME=`grep "^Description:" debian/control | sed 's/^Description: *//'` PROGNAME=`grep "^Package:" debian/control | sed 's/^Package: *//'` AUTHOR=".SH AUTHOR\nThis manpage was written by $DEBFULLNAME for the Debian distribution and can be used for any other usage of the program. " progname=<PROGNAME> # If program name is different from package name or title should be # different from package short description change this here progname=${PROGNAME} help2man --no-info --no-discard-stderr --help-option=" " \ --name='<optional description of the program>' \ --name="$NAME" \ --version-string="$VERSION" ${progname} > $MANDIR/${progname}.1 echo $AUTHOR >> $MANDIR/${progname}.1 Loading