source:
common/blfs-tool-deps/906-docbook-xsl@
f39be81
Last change on this file since f39be81 was 357a041, checked in by , 18 years ago | |
---|---|
|
|
File size: 1.2 KB |
Rev | Line | |
---|---|---|
[3c5ca23] | 1 | #!/bin/sh |
2 | ||
3 | # $Id$ | |
4 | ||
5 | set -e | |
6 | ||
7 | install -v -m755 -d /usr/share/xml/docbook/xsl-stylesheets-1.69.1 | |
8 | cp -v -R VERSION common eclipse extensions fo html \ | |
9 | htmlhelp images javahelp lib manpages params \ | |
10 | profiling slides template website xhtml \ | |
11 | /usr/share/xml/docbook/xsl-stylesheets-1.69.1 | |
12 | ||
13 | if [ ! -d /etc/xml ]; then install -v -m755 -d /etc/xml; fi | |
14 | if [ ! -f /etc/xml/catalog ]; then | |
15 | xmlcatalog --noout --create /etc/xml/catalog | |
16 | fi | |
17 | ||
18 | xmlcatalog --noout --add "rewriteSystem" \ | |
19 | "http://docbook.sourceforge.net/release/xsl/1.69.1" \ | |
20 | "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \ | |
21 | /etc/xml/catalog | |
22 | ||
23 | xmlcatalog --noout --add "rewriteURI" \ | |
24 | "http://docbook.sourceforge.net/release/xsl/1.69.1" \ | |
25 | "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \ | |
26 | /etc/xml/catalog | |
27 | ||
28 | xmlcatalog --noout --add "rewriteSystem" \ | |
29 | "http://docbook.sourceforge.net/release/xsl/current" \ | |
30 | "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \ | |
31 | /etc/xml/catalog | |
32 | ||
33 | xmlcatalog --noout --add "rewriteURI" \ | |
34 | "http://docbook.sourceforge.net/release/xsl/current" \ | |
35 | "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \ | |
36 | /etc/xml/catalog | |
37 | ||
[44994cb] | 38 | exit |
Note:
See TracBrowser
for help on using the repository browser.