blob: ef5fed404524d7d8f1dff3541e8a2205dd6a48bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SUMMARY = "YANG data modelling language parser and toolkit"
DESCRIPTION = "libyang is YANG data modelling language parser and toolkit written (and providing API) in C. The library is used e.g. in libnetconf2, Netopeer2 or sysrepo projects."
SECTION = "libs"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=f3916d7d8d42a6508d0ea418cfff10ad"
SRC_URI = "git://github.com/CESNET/libyang.git;protocol=https;branch=devel"
PV = "2.1.77+git"
SRCREV = "a804113c9bbac3e36c53221be469c1ca5af5b435"
S = "${WORKDIR}/git"
DEPENDS = "libpcre2"
FILES:${PN} += "${datadir}/yang/modules/libyang/*"
inherit cmake pkgconfig
# Specify any options you want to pass to cmake using EXTRA_OECMAKE:
EXTRA_OECMAKE = " -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_BUILD_TYPE:String=Release "
BBCLASSEXTEND = "native nativesdk"
|