mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 08:18:43 +01:00
Update to the latest stable release Tested in qemux86-64 running core-image-minimal (From OE-Core rev: fa4db2f80f6149e402f977e8de022493e6c0e1d2) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
SUMMARY = "Python bindings for the Cairo canvas library"
|
|
HOMEPAGE = "http://cairographics.org/pycairo"
|
|
BUGTRACKER = "http://bugs.freedesktop.org"
|
|
SECTION = "python-devel"
|
|
LICENSE = "LGPLv2.1 & MPLv1.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f2e071ab72978431b294a0d696327421 \
|
|
file://COPYING-LGPL-2.1;md5=fad9b3332be894bab9bc501572864b29 \
|
|
file://COPYING-MPL-1.1;md5=bfe1f75d606912a4111c90743d6c7325"
|
|
|
|
# cairo >= 1.14
|
|
DEPENDS = "cairo"
|
|
|
|
SRC_URI = "https://github.com/pygobject/pycairo/releases/download/v${PV}/pycairo-${PV}.tar.gz"
|
|
UPSTREAM_CHECK_URI = "https://github.com/pygobject/pycairo/releases/"
|
|
|
|
SRC_URI[md5sum] = "3ff210c34e7b052590e15fd0fb147766"
|
|
SRC_URI[sha256sum] = "ad150ea637860836b66705e0513b8e59494538f0b80497ad3462051368755016"
|
|
|
|
S = "${WORKDIR}/pycairo-${PV}"
|
|
|
|
inherit setuptools3 pkgconfig
|
|
|
|
CFLAGS += "-fPIC"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
do_install_append() {
|
|
install -d ${D}${includedir}/pycairo/
|
|
install -m 0644 ${D}${datadir}/include/pycairo/py3cairo.h ${D}${includedir}/pycairo/
|
|
}
|
|
FILES_${PN} += "${datadir}/include/pycairo/py3cairo.h"
|