summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb
diff options
context:
space:
mode:
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.bb30
1 files changed, 0 insertions, 30 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
deleted file mode 100644
index bcd309282b..0000000000
--- a/meta-oe/recipes-support/libtinyxml2/libtinyxml2_10.0.0.bb
+++ /dev/null
@@ -1,30 +0,0 @@
1SUMMARY = "TinyXML-2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs"
2HOMEPAGE = "https://leethomason.github.io/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 += " \
16 ${@bb.utils.contains('PTEST_ENABLED', '1', '-Dtests=true', '', d)} \
17 -Ddefault_library=both \
18"
19
20CXXFLAGS:append:libc-musl = " -D_LARGEFILE64_SOURCE"
21
22do_install_ptest() {
23 install -Dm 0755 ${B}/xmltest ${D}${PTEST_PATH}/xmltest
24 install -d ${D}${PTEST_PATH}/resources/out
25 for f in ${S}/resources/*.xml; do
26 install -m 0644 $f ${D}${PTEST_PATH}/resources/
27 done
28}
29
30BBCLASSEXTEND = "native nativesdk"