mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
* Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
27 lines
840 B
BlitzBasic
27 lines
840 B
BlitzBasic
SUMMARY = "A fast JSON parser/generator for C++ with both SAX/DOM style API"
|
|
HOMEPAGE = "http://rapidjson.org/"
|
|
SECTION = "libs"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://license.txt;md5=ba04aa8f65de1396a7e59d1d746c2125"
|
|
|
|
SRC_URI = "git://github.com/miloyip/rapidjson.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "0ccdbf364c577803e2a751f5aededce935314313"
|
|
|
|
PV = "1.1.0+git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE += "-DRAPIDJSON_BUILD_DOC=OFF -DRAPIDJSON_BUILD_TESTS=OFF -DRAPIDJSON_BUILD_EXAMPLES=OFF"
|
|
# the install path for cmake modules etc. is hardcoded as ${prefix}/lib in
|
|
# CMakeLists.txt, which breaks the package split with multilib
|
|
EXTRA_OECMAKE += "-DLIB_INSTALL_DIR=${libdir}"
|
|
|
|
# RapidJSON is a header-only C++ library, so the main package will be empty.
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|