mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
30 lines
780 B
BlitzBasic
30 lines
780 B
BlitzBasic
DESCRIPTION = " \
|
|
QCBOR is a powerful, commercial-quality CBOR encoder/decoder that \
|
|
implements these RFCs: RFC8949, RFC7049, RFC8742, RFC8943 \
|
|
"
|
|
|
|
HOMEPAGE = "https://github.com/laurencelundblade/QCBOR"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=9abe2371333f4ab0e62402a486f308a5"
|
|
|
|
SRC_URI = "git://github.com/laurencelundblade/QCBOR;protocol=https;branch=master;tag=v${PV}"
|
|
|
|
SRCREV = "930708bb86481e88879eb1d87fd4d664f1d69503"
|
|
|
|
|
|
inherit pkgconfig
|
|
|
|
CFLAGS += " \
|
|
-DUSEFULBUF_DISABLE_ALL_FLOAT \
|
|
"
|
|
|
|
do_install(){
|
|
install -d ${D}${libdir}
|
|
install -m 755 ${S}/libqcbor.a ${D}${libdir}/
|
|
install -d ${D}${includedir}/qcbor
|
|
install -m 644 ${S}/inc/*.h ${D}${includedir}
|
|
install -m 644 ${S}/inc/qcbor/*.h ${D}${includedir}/qcbor
|
|
}
|
|
|