blob: 4ad49971ab85c0b0935c3a6db5ea12a48435c87d [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001SUMMARY = "USB CEC Adaptor communication Library"
2HOMEPAGE = "http://libcec.pulse-eight.com/"
3
4LICENSE = "GPLv2+"
5LIC_FILES_CHKSUM = "file://COPYING;md5=e61fd86f9c947b430126181da2c6c715"
6
7DEPENDS = "p8platform udev ncurses swig-native python3"
8
9DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libx11 libxrandr', '', d)}"
10DEPENDS_append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}"
11
12PV = "4.0.2+gitr${SRCPV}"
13
14SRCREV = "0a97062dd4b196ceeb003ec41841c7a7edc36dd1"
15SRC_URI = "git://github.com/Pulse-Eight/libcec.git \
16 file://0001-Explicitly-use-python3-in-pyCecClient.patch"
17
18S = "${WORKDIR}/git"
19
20inherit cmake pkgconfig
21
22# Put client tools into a separate package
23PACKAGE_BEFORE_PN += "${PN}-tools"
24FILES_${PN}-tools = "${bindir}"
25RDEPENDS_${PN}-tools = "python3-${BPN}"
26
27# Create the wrapper for python3
28PACKAGES += "python3-${BPN}"
29FILES_python3-${BPN} = "${libdir}/python3* ${bindir}/py*"
30RDEPENDS_${PN} = "python3-core"
31
32# cec-client and xbmc need the .so present to work :(
33FILES_${PN} += "${libdir}/*.so"
34INSANE_SKIP_${PN} = "dev-so"
35
36# Adapter shows up as a CDC-ACM device
37RRECOMMENDS_${PN} = "kernel-module-cdc-acm"