blob: aa4880a9939078b379175435edbafdc5b745549f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
DESCRIPTION = "Json C++ Library"
HOMEPAGE = "https://github.com/open-source-parsers/jsoncpp"
# Public Domain
LICENSE = "PD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=f7c191d0ae6a652f63b2d2bc1ea8bdab"
DEPENDS = ""
BBCLASSEXTEND = "native"
SRCREV = "svn-release-0.5.0"
SRC_URI = " \
git://github.com/open-source-parsers/jsoncpp.git;nobranch=1 \
file://jsoncpp-0.5.0-p1.patch \
file://Makefile \
"
PR = "r2"
S = "${WORKDIR}/git"
do_compile() {
cp ${WORKDIR}/Makefile .
oe_runmake
}
do_install() {
oe_runmake install DESTDIR=${D}
}
|