diff options
author | Matthieu CRAPET <Matthieu.CRAPET@ingenico.com> | 2014-02-20 10:13:49 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-02-23 23:17:32 +0100 |
commit | ffade38e6bd4018ef6c14fa10b3b46f8b77247e9 (patch) | |
tree | b44626c9925645163cc065485bca3a3493eb3dbc /meta-oe/recipes-support/xmlstarlet/xmlstarlet_1.5.0.bb | |
parent | 4db6b3db631485d59bd1a107864aa72b34a9f921 (diff) | |
download | meta-openembedded-ffade38e6bd4018ef6c14fa10b3b46f8b77247e9.tar.gz |
xmlstarlet: add new recipe for version 1.5.0
Useful CLI tool for XML data manipulation.
Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/xmlstarlet/xmlstarlet_1.5.0.bb')
-rw-r--r-- | meta-oe/recipes-support/xmlstarlet/xmlstarlet_1.5.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/xmlstarlet/xmlstarlet_1.5.0.bb b/meta-oe/recipes-support/xmlstarlet/xmlstarlet_1.5.0.bb new file mode 100644 index 000000000..770ccab1e --- /dev/null +++ b/meta-oe/recipes-support/xmlstarlet/xmlstarlet_1.5.0.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Command line XML toolkit" | ||
2 | DESCRIPTION = "XMLStarlet is a command line XML toolkit which can be used to \ | ||
3 | transform, query, validate, and edit XML documents and files \ | ||
4 | using simple set of shell commands in similar way it is done \ | ||
5 | for plain text files using grep/sed/awk/tr/diff/patch." | ||
6 | HOMEPAGE = "http://xmlstar.sourceforge.net/" | ||
7 | BUGTRACKER = "http://xmlstar.sourceforge.net/bugs/" | ||
8 | |||
9 | SECTION = "console/utils" | ||
10 | LICENSE = "MIT" | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=c04760d09e8b0fe73283d0cc9e8bea53" | ||
12 | |||
13 | DEPENDS = "libxml2 libxslt" | ||
14 | |||
15 | SRC_URI = "${SOURCEFORGE_MIRROR}/xmlstar/${BPN}-${PV}.tar.gz \ | ||
16 | file://configure.ac.patch" | ||
17 | SRC_URI[md5sum] = "0c6db295d0cf9ff0d439edb755b7e8f6" | ||
18 | SRC_URI[sha256sum] = "47b4ed042ea2909257f2a386001af49fceb303f84da7214779ccf99fffc6bbba" | ||
19 | |||
20 | inherit autotools | ||
21 | |||
22 | # doc build: requires (native) xstlproc, fop, pdf2ps | ||
23 | EXTRA_OECONF="--disable-build-docs \ | ||
24 | --with-libxml-prefix=${STAGING_LIBDIR}/.. \ | ||
25 | --with-libxslt-prefix=${STAGING_LIBDIR}/.." | ||