如何更改 debian 软件的手册页部分?
How to change man page section of debian software?
包的手册页在第 1 部分,但我想要它在第 8 部分。我必须在 git 中做哪些更改?
我尝试将 package.1 文件重命名为 package.8,但至少在我通过 dpkg-buildpackage
创建包时没有帮助。
您必须在手册页文件的内容中注明该部分。
如果您通过 help2man
创建文件,则必须使用 --section
选项,在本例中为 --section=8
.
man 1 dh_installman
(对于版本 11.1.6ubuntu2)告诉:
If dh_installman seems to install a man page into the wrong section or
with the wrong extension, this is because the man page has the wrong
section listed in its .TH or .Dt line. Edit the man page and correct
the section, and dh_installman will follow suit. See man(7) for
details about the .TH section, and mdoc(7) for the .Dt section.
包的手册页在第 1 部分,但我想要它在第 8 部分。我必须在 git 中做哪些更改?
我尝试将 package.1 文件重命名为 package.8,但至少在我通过 dpkg-buildpackage
创建包时没有帮助。
您必须在手册页文件的内容中注明该部分。
如果您通过 help2man
创建文件,则必须使用 --section
选项,在本例中为 --section=8
.
man 1 dh_installman
(对于版本 11.1.6ubuntu2)告诉:
If dh_installman seems to install a man page into the wrong section or with the wrong extension, this is because the man page has the wrong section listed in its .TH or .Dt line. Edit the man page and correct the section, and dh_installman will follow suit. See man(7) for details about the .TH section, and mdoc(7) for the .Dt section.