diff options
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.bb | 30 |
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 @@ | |||
1 | SUMMARY = "TinyXML-2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs" | ||
2 | HOMEPAGE = "https://leethomason.github.io/tinyxml2" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "Zlib" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=135624eef03e1f1101b9ba9ac9b5fffd" | ||
6 | |||
7 | SRCREV = "321ea883b7190d4e85cae5512a12e5eaa8f8731f" | ||
8 | SRC_URI = "git://github.com/leethomason/tinyxml2.git;branch=master;protocol=https \ | ||
9 | file://run-ptest" | ||
10 | |||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | inherit meson ptest | ||
14 | |||
15 | EXTRA_OEMESON += " \ | ||
16 | ${@bb.utils.contains('PTEST_ENABLED', '1', '-Dtests=true', '', d)} \ | ||
17 | -Ddefault_library=both \ | ||
18 | " | ||
19 | |||
20 | CXXFLAGS:append:libc-musl = " -D_LARGEFILE64_SOURCE" | ||
21 | |||
22 | do_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 | |||
30 | BBCLASSEXTEND = "native nativesdk" | ||