diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2016-01-11 08:30:34 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-15 11:54:49 +0000 |
commit | 372c23d188b611ea3339b91ea418ab82dff7f48f (patch) | |
tree | 1467a6ffe52c447bc0d967c01f869830911d0175 /meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | |
parent | aaafe33b791326a7f08f15ee97cbd7229ab40895 (diff) | |
download | poky-372c23d188b611ea3339b91ea418ab82dff7f48f.tar.gz |
xmlto: 0.0.26 -> 0.0.28
(From OE-Core rev: a88be02e893fc98404e205b04b5a1aad1e4ab0ee)
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.28.bb')
-rw-r--r-- | meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb new file mode 100644 index 0000000000..514f527ac7 --- /dev/null +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | |||
@@ -0,0 +1,38 @@ | |||
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] = "a1fefad9d83499a15576768f60f847c6" | ||
13 | SRC_URI[sha256sum] = "2f986b7c9a0e9ac6728147668e776d405465284e13c74d4146c9cbc51fd8aad3" | ||
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 | |||
38 | do_populate_sysroot[rdeptask] = "do_populate_sysroot" | ||