summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-01-03 16:38:26 +0800
committerKhem Raj <raj.khem@gmail.com>2024-01-08 19:54:39 -0800
commit430df76f8d50dd5427e6857dc15b630c439c586a (patch)
tree3f2fe66d49993ade29ec8f27696a67d023d942b9 /meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb
parent695bdeebb0cdfc5264a89757ce822628519a03b7 (diff)
downloadmeta-openembedded-430df76f8d50dd5427e6857dc15b630c439c586a.tar.gz
libtinyxml2: upgrade 9.0.0 -> 10.0.0
remove non-existent files from install. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb')
-rw-r--r--meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb b/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb
new file mode 100644
index 0000000000..af5a994d22
--- /dev/null
+++ b/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb
@@ -0,0 +1,24 @@
1SUMMARY = "TinyXML-2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs"
2HOMEPAGE = "http://www.grinninglizard.com/tinyxml2/"
3SECTION = "libs"
4LICENSE = "Zlib"
5LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=135624eef03e1f1101b9ba9ac9b5fffd"
6
7SRCREV = "321ea883b7190d4e85cae5512a12e5eaa8f8731f"
8SRC_URI = "git://github.com/leethomason/tinyxml2.git;branch=master;protocol=https \
9 file://run-ptest"
10
11S = "${WORKDIR}/git"
12
13inherit meson ptest
14
15EXTRA_OEMESON += "${@bb.utils.contains('PTEST_ENABLED', '1', '-Dtests=true', '', d)}"
16
17CXXFLAGS:append:libc-musl = " -D_LARGEFILE64_SOURCE"
18
19do_install_ptest() {
20 install -Dm 0755 ${B}/xmltest ${D}${PTEST_PATH}/xmltest
21 install -d ${D}${PTEST_PATH}/resources/out
22}
23
24BBCLASSEXTEND = "native"