# HG changeset patch # User gabucino # Date 1063566655 0 # Node ID 74fde9d0cab616b8f16f2aaa856584280da92343 # Parent 5b666694b437bde2dfaaa87eb2452659b030da4f XML tools download and installation instructions diff -r 5b666694b437 -r 74fde9d0cab6 DOCS/xml/README --- a/DOCS/xml/README Sun Sep 14 17:52:59 2003 +0000 +++ b/DOCS/xml/README Sun Sep 14 19:10:55 2003 +0000 @@ -17,6 +17,43 @@ the Makefile. +Installing the required tools from source +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +1) Download libxslt AND libxml2 packages from + http://xmlsoft.org/XSLT/downloads.html + + Installing them should be straightforward, executing the usual "./configure" + and "make" then "make install" commands. + + +2) Download the docbook-xml package from http://www.oasis-open.org/docbook/xml/ + Use the newest version. The URL will be something like this: + + http://www.oasis-open.org/docbook/xml/4.2/docbook-xml-4.2.zip + + Extract this package into a directory, enter it, and execute the following + commands: + + mkdir -p /usr/share/sgml/docbook/dtd/xml/4.2/ + cp -r * /usr/share/sgml/docbook/dtd/xml/4.2/ + + +3) Download the docbook-xsl package from + http://prdownloads.sourceforge.net/docbook/ + + Use the newest version. The URL will be something like this: + + http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.62.0.tar.gz + + Extract this package into a directory, enter it, and execute the following + commands: + + mkdir -p /usr/share/sgml/docbook/stylesheet/xsl/nwalsh + cp -r VERSION common html lib \ + /usr/share/sgml/docbook/stylesheet/xsl/nwalsh + + Building the documentation ~~~~~~~~~~~~~~~~~~~~~~~~~~