diff options
author | gabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-09-14 19:10:55 +0000 |
---|---|---|
committer | gabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-09-14 19:10:55 +0000 |
commit | 80a731c8dfc4aa0b376bff8326354397cd8b64a6 (patch) | |
tree | d8a1417b6bb467b4a60ea81cfe5bf3d85e3f26e2 | |
parent | 74e99555e5bb0b9c39cd8b423d415b4d9d715693 (diff) |
XML tools download and installation instructions
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10869 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | DOCS/xml/README | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/DOCS/xml/README b/DOCS/xml/README index 04fd9f5576..09b6f999e9 100644 --- a/DOCS/xml/README +++ b/DOCS/xml/README @@ -17,6 +17,43 @@ used it (version 6.4.4) for a while. To enable it change USE_SAXON to 1 in 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 ~~~~~~~~~~~~~~~~~~~~~~~~~~ |