diff options
author | Koen Kooi <koen@openembedded.org> | 2010-06-01 10:49:59 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-01 12:09:05 +0200 |
commit | 30803326801b546ceb1a6a09756d797ad4f82634 (patch) | |
tree | ccaad43686a76f3a51f31b0674d7efa99a73313c /recipes/webm | |
parent | 6edd8c56a7ce5fd853ecfd66b5b50a1cc31efc22 (diff) |
libvpx: stage headers in ${includedir}/vpx
Diffstat (limited to 'recipes/webm')
-rw-r--r-- | recipes/webm/libvpx_0.9.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes/webm/libvpx_0.9.0.bb b/recipes/webm/libvpx_0.9.0.bb index aa5d072f09..145d90abc4 100644 --- a/recipes/webm/libvpx_0.9.0.bb +++ b/recipes/webm/libvpx_0.9.0.bb @@ -1,6 +1,8 @@ DESCRIPTION = "vpx Multi-Format Codec SDK" LICENSE = "VP8" +PR = "r1" + SRC_URI = "http://webm.googlecode.com/files/libvpx-${PV}.tar.bz2" SRC_URI[md5sum] = "9eb8e818d2f3263623c258fe66924082" @@ -27,5 +29,7 @@ do_install() { oe_runmake install install -d ${D}${prefix} cp -r ${S}/vpx-vp8-nopost-nodocs*${PV}/* ${D}${prefix}/ + install -d ${D}${includedir}/vpx + mv ${D}${includedir}/*.h ${D}${includedir}/vpx } |