|
Size: 692
Comment:
|
← Revision 7 as of 2008-03-12 02:47:09 ⇥
Size: 696
Comment: converted to 1.6 markup
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| Using [http://openjade.sourceforge.net/ OpenJade], [http://catb.org/~esr/doclifter/ doclifter] and Jade Wrapper you can export the SCons manpage as a handy, indexed PDF file. | Using [[http://openjade.sourceforge.net/|OpenJade]], [[http://catb.org/~esr/doclifter/|doclifter]] and Jade Wrapper you can export the SCons manpage as a handy, indexed PDF file. |
Using OpenJade, doclifter and Jade Wrapper you can export the SCons manpage as a handy, indexed PDF file.
{{{# -*- mode:shell-script -*-
# This script was written for Ubuntu 6.10 and assumes the following packages: # docbook-utils # doclifter # # sudo apt-get install docbook-utils doclifter
gunzip -c /usr/share/man/man1/scons.1.gz | doclifter > scons.sgml
# Uncomment this line if you want to check the sgml before processing it #gedit scons.sgml
docbook2pdf scons.sgml
# You could use this if you don't have the docbook2pdf script #jw -f docbook -b pdf scons.sgml
rm scons.sgml }}}
