blob: 55db0d69daea5a79a6023e127d9f47fa1c272c02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
LICENSE = "LGPL"
DESCRIPTION = "Nokia MCE headers"
inherit pkgconfig
do_compile() {
# Nothing to compile in this recipe. These are just headers.
:
}
do_install() {
install -d ${D}${prefix}/include
install -d ${D}${libdir}/pkgconfig
cp -pPr include/* ${D}${prefix}/include
cp *.pc ${D}${libdir}/pkgconfig/
}
do_stage() {
cp -pPr include/* ${STAGING_INCDIR}/
}
|