diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2015-01-09 19:09:39 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-23 11:36:30 +0000 |
commit | e758eb535cb1a0ac1afb58b86065b5f535b01677 (patch) | |
tree | 1a034b59a46ede6d36a4fc3dc629e12ad0d5358b /meta/recipes-devtools/xmlto/xmlto_0.0.26.bb | |
parent | 0421c67c02273ff49db63c5b6c25db3292032038 (diff) | |
download | poky-e758eb535cb1a0ac1afb58b86065b5f535b01677.tar.gz |
xmlto: upgrade to 0.0.25
Drop obsolete_automake_macros.patch, it has been merged to 0.0.25
(From OE-Core rev: fc96d1443213f189b5fbfb25f2c1d23d6fbd6d92)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/xmlto/xmlto_0.0.26.bb')
-rw-r--r-- | meta/recipes-devtools/xmlto/xmlto_0.0.26.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.26.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.26.bb new file mode 100644 index 0000000000..160aa5dfb7 --- /dev/null +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.26.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | SUMMARY = "A shell-script tool for converting XML files to various formats" | ||
2 | HOMEPAGE = "https://fedorahosted.org/xmlto/" | ||
3 | SECTION = "docs/xmlto" | ||
4 | LICENSE = "GPLv2" | ||
5 | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | ||
7 | |||
8 | SRC_URI = "https://fedorahosted.org/releases/x/m/xmlto/xmlto-${PV}.tar.gz \ | ||
9 | file://configure.in-drop-the-test-of-xmllint-and-xsltproc.patch \ | ||
10 | file://catalog.xml \ | ||
11 | " | ||
12 | SRC_URI[md5sum] = "0cca8be787ba01e00c618cb390c988b9" | ||
13 | SRC_URI[sha256sum] = "cfd8d2a26077be1d5566dfe22dd66099ae4f4600dea97d6e113a2cc5b8708977" | ||
14 | |||
15 | inherit autotools | ||
16 | |||
17 | # xmlto needs getopt/xmllint/xsltproc/bash at runtime | ||
18 | RDEPENDS_${PN} = "docbook-xml-dtd4 \ | ||
19 | docbook-xsl-stylesheets \ | ||
20 | util-linux \ | ||
21 | libxml2 \ | ||
22 | bash \ | ||
23 | " | ||
24 | RDEPENDS_${PN}_append_class-target = " \ | ||
25 | libxslt-bin \ | ||
26 | " | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||
29 | |||
30 | EXTRA_OECONF_append = " XMLLINT=xmllint XSLTPROC=xsltproc" | ||
31 | |||
32 | do_install_append() { | ||
33 | install -d ${D}${sysconfdir}/xml/ | ||
34 | install -m 755 ${WORKDIR}/catalog.xml ${D}${sysconfdir}/xml/catalog.xml | ||
35 | create_wrapper ${D}/${bindir}/xmlto XML_CATALOG_FILES=${sysconfdir}/xml/catalog.xml | ||
36 | } | ||
37 | |||