mirror of
https://github.com/NixOS/nix
synced 2025-07-08 02:43:54 +02:00
* Generate man pages from the manual.
This commit is contained in:
parent
c602930e08
commit
e405ca506e
6 changed files with 92 additions and 14 deletions
22
doc/manual/Makefile.am
Normal file
22
doc/manual/Makefile.am
Normal file
|
@ -0,0 +1,22 @@
|
|||
DOCBOOK_DTD = /nix/current/xml/dtd/docbook
|
||||
DOCBOOK_XSL = /nix/current/xml/xsl/docbook
|
||||
XML = /usr/share/doc/packages/sp/html-xml/xml.soc
|
||||
|
||||
%.is-valid: %.xml
|
||||
SP_CHARSET_FIXED=YES SP_ENCODING=XML \
|
||||
nsgmls -wxml -c $(XML) -c $(DOCBOOK_DTD)/docbook.cat -ges $<
|
||||
touch $@
|
||||
|
||||
man1_MANS = nix.1
|
||||
|
||||
man nix.1: book.is-valid
|
||||
xsltproc $(DOCBOOK_XSL)/manpages/docbook.xsl book.xml
|
||||
|
||||
%.html: %.xml %.is-valid
|
||||
xsltproc --output book.html $(DOCBOOK_XSL)/html/docbook.xsl book.xml
|
||||
|
||||
all-local: book.html
|
||||
|
||||
install-data-local: book.html
|
||||
$(INSTALL) -d $(datadir)/nix/manual
|
||||
$(INSTALL_DATA) book.html $(datadir)/nix/manual
|
Loading…
Add table
Add a link
Reference in a new issue