blob: 7cc12f2fecb9afb3c719a401cd5c41068a768d63 (
plain)
1 # Description: A collection of XSL stylesheets that are useful for performing transformations on XML DocBook files.
2 # URL: http://docbook.sourceforge.net/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: libxslt docbook-xml
5
6 name=docbook-xsl
7 version=1.79.1
8 release=1
9 source=(http://downloads.sourceforge.net/project/docbook/$name/$version/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 install -v -m 0755 -d $PKG/usr/share/xml/docbook/xsl-stylesheets-$version
15
16 cp -v -R \
17 VERSION common eclipse epub extensions fo \
18 highlighting html htmlhelp images javahelp lib manpages \
19 params profiling roundtrip slides template tests tools website \
20 xhtml xhtml-1_1 \
21 $PKG/usr/share/xml/docbook/xsl-stylesheets-$version
22
23 ln -s VERSION $PKG/usr/share/xml/docbook/xsl-stylesheets-${version}/VERSION.xsl
24
25 ln -sf xsl-stylesheets-$version $PKG/usr/share/xml/docbook/xsl-stylesheets
26
27 install -v -m 0644 -D README \
28 $PKG/usr/share/doc/docbook-xsl-$version/README.txt
29
30 install -v -m 0755 RELEASE-NOTES* NEWS* \
31 $PKG/usr/share/doc/docbook-xsl-$version
32 }
|