diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-26 10:00:20 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-26 10:00:20 +0100 |
commit | 237b838e961d957d83449fa9fd9729bffee03b02 (patch) | |
tree | d22dbf6dcf924a2565814d2c3cc956d36d0c986d /meta-oe/recipes-extended/libcec | |
parent | a2b05eddcfa02d57dd2ac5b1c33fca4647af283b (diff) | |
download | meta-openembedded-237b838e961d957d83449fa9fd9729bffee03b02.tar.gz |
libcec: fix packaging
The kernel module and .so change are needed to make it actually work with the adapter.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-extended/libcec')
-rw-r--r-- | meta-oe/recipes-extended/libcec/libcec_git.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libcec/libcec_git.bb b/meta-oe/recipes-extended/libcec/libcec_git.bb index 250c96952..142b2e216 100644 --- a/meta-oe/recipes-extended/libcec/libcec_git.bb +++ b/meta-oe/recipes-extended/libcec/libcec_git.bb | |||
@@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=185ead350fec5fc223da0f65f9a802af" | |||
6 | 6 | ||
7 | DEPENDS = "udev" | 7 | DEPENDS = "udev" |
8 | 8 | ||
9 | PR = "r1" | ||
9 | PV = "1.4.0" | 10 | PV = "1.4.0" |
10 | SRCREV = "2db8981f49fbd167ddbbf19c1fbadd064abc332a" | 11 | SRCREV = "2db8981f49fbd167ddbbf19c1fbadd064abc332a" |
11 | SRC_URI = "git://github.com/Pulse-Eight/libcec.git" | 12 | SRC_URI = "git://github.com/Pulse-Eight/libcec.git" |
@@ -14,3 +15,9 @@ S = "${WORKDIR}/git" | |||
14 | 15 | ||
15 | inherit autotools pkgconfig | 16 | inherit autotools pkgconfig |
16 | 17 | ||
18 | # cec-client and xbmc need the .so present to work :( | ||
19 | FILES_${PN} += "${libdir}/*.so" | ||
20 | INSANE_SKIP_${PN} = "dev-so" | ||
21 | |||
22 | # Adapter shows up as a CDC-ACM device | ||
23 | RRECOMMENDS_${PN} = "kernel-module-cdc-acm" | ||