2014-11-01 07:12:39 +07:00
|
|
|
#/bin/sh
|
|
|
|
|
2014-11-02 00:22:24 +07:00
|
|
|
set -e
|
|
|
|
|
2014-11-01 07:12:39 +07:00
|
|
|
XSLTPROC="/usr/bin/xsltproc"
|
|
|
|
|
2022-04-06 09:26:11 +07:00
|
|
|
XSLTPROC_FLAGS="--nonet \
|
|
|
|
--xinclude \
|
|
|
|
--maxdepth 9000 \
|
|
|
|
--stringparam man.output.quietly 1 \
|
2014-11-01 07:12:39 +07:00
|
|
|
--stringparam funcsynopsis.style ansi \
|
|
|
|
--stringparam man.th.extra1.suppress 1 \
|
|
|
|
--stringparam man.authors.section.enabled 0 \
|
|
|
|
--stringparam man.copyright.section.enabled 0"
|
|
|
|
|
|
|
|
xslt_proc() {
|
2022-04-06 09:26:11 +07:00
|
|
|
[ "$V" = 1 ] && echo $XSLTPROC -o $1.$2 $XSLTPROC_FLAGS custom-man.xsl $1.xml
|
|
|
|
$XSLTPROC -o $1.$2 $XSLTPROC_FLAGS custom-man.xsl $1.xml
|
2014-11-01 07:12:39 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
xslt_proc udev 7
|
2022-04-06 09:26:11 +07:00
|
|
|
xslt_proc hwdb 7
|
2014-11-01 07:12:39 +07:00
|
|
|
xslt_proc udev.conf 5
|
|
|
|
xslt_proc udevd 8
|
|
|
|
xslt_proc udevadm 8
|