Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 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/${BP}.tar.gz \ |
| 16 | file://configure.ac.patch \ |
Andrew Geissler | c5535c9 | 2023-01-27 16:10:19 -0600 | [diff] [blame^] | 17 | file://0001-usage2c.awk-fix-wrong-basename-regexp.patch \ |
| 18 | file://0001-Fix-hash_key_put-signature.patch" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 19 | SRC_URI[sha256sum] = "15d838c4f3375332fd95554619179b69e4ec91418a3a5296e7c631b7ed19e7ca" |
| 20 | |
| 21 | inherit autotools |
| 22 | |
| 23 | # doc build: requires (native) xstlproc, fop, pdf2ps |
| 24 | EXTRA_OECONF="--disable-build-docs \ |
| 25 | --with-libxml-prefix=${STAGING_LIBDIR}/.. \ |
| 26 | --with-libxslt-prefix=${STAGING_LIBDIR}/.." |
Brad Bishop | 2eeb525 | 2018-09-10 18:40:16 +0000 | [diff] [blame] | 27 | |
| 28 | # http://errors.yoctoproject.org/Errors/Details/157121/ |
| 29 | # /bin/bash: src/usage.c: No such file or directory |
| 30 | # Makefile:2121: recipe for target 'src/usage.c' failed |
| 31 | PARALLEL_MAKE = "" |