blob: bd75d6ad6847f6e2d829b464e6f88f58b2661e61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require docbook-sgml-dtd-native.inc
DTD_VERSION = "4.1"
SRC_URI = "http://docbook.org/sgml/4.1/docbk41.zip"
do_compile() {
# Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/sgml-dtd.html
# for details.
sed -i -e '/ISO 8879/d' -e '/gml/d' docbook.cat
}
|