mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-03 20:54:42 +02:00
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls. Fix a small number of cases not addressed by the original patch: http://git.openembedded.org/meta-openembedded/commit/?id=efd3696e70a6603f1a45faa4a172433514f0a487 Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
22 lines
778 B
BlitzBasic
22 lines
778 B
BlitzBasic
SUMMARY = "C++ bindings for the pango library"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2.1 & GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499 \
|
|
file://COPYING.tools;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
DEPENDS = "mm-common cairomm glibmm pango"
|
|
|
|
SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}"
|
|
|
|
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/pangomm/${SHRT_VER}/pangomm-${PV}.tar.xz"
|
|
SRC_URI[md5sum] = "874eadd9434613dbacf0272c82c3ac23"
|
|
SRC_URI[sha256sum] = "9762ee2a2d5781be6797448d4dd2383ce14907159b30bc12bf6b08e7227be3af"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = " --disable-documentation "
|
|
|
|
FILES_${PN} = "${libdir}/lib*.so.*"
|
|
FILES_${PN}-dev += "${libdir}/*/include/ ${libdir}/pangomm-*/"
|
|
|