blob: 38a063888fd4d316b2a1bedc43fb8d66ae1126b9 (
plain)
1 # Description: An document type definitions for verification of XML data files against the DocBook rule set.
2 # URL: http://www.docbook.org/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Depends on: libxml2
5
6 ## http://www.linuxfromscratch.org/blfs/view/svn/pst/DocBook.html
7
8 name=docbook-xml
9 version=4.5
10 release=1
11 source="http://www.docbook.org/xml/$version/$name-$version.zip"
12
13 build() {
14 install -d $PKG/usr/share/xml/docbook/xml-dtd-$version $PKG/etc/xml
15 install -v -d -m 0755 $PKG/usr/share/xml/docbook/xml-dtd-$version
16 install -v -d -m 0755 $PKG/etc/xml
17
18 cp -a docbook.cat *.dtd ent/ *.mod \
19 $PKG/usr/share/xml/docbook/xml-dtd-$version
20
21 find $PKG/usr/share/xml/docbook/xml-dtd-$version -type f -exec chmod go-w,-x {} +
22 }
|