diff options
author | Koen Kooi <koen@openembedded.org> | 2010-05-30 15:29:50 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-05-31 08:13:12 +0200 |
commit | 0de4993ae3851c5f0e58835d8fb16eb91cd558f6 (patch) | |
tree | 0ae5677b432b359e34ad444fbaa449dd9177b777 /recipes | |
parent | bfd1c1768a1b55eac0f094f9d9f6de361474dcd9 (diff) |
libvpx: add 0.9.0
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/webm/libvpx_0.9.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/webm/libvpx_0.9.0.bb b/recipes/webm/libvpx_0.9.0.bb new file mode 100644 index 0000000000..aa5d072f09 --- /dev/null +++ b/recipes/webm/libvpx_0.9.0.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "vpx Multi-Format Codec SDK" +LICENSE = "VP8" + +SRC_URI = "http://webm.googlecode.com/files/libvpx-${PV}.tar.bz2" + +SRC_URI[md5sum] = "9eb8e818d2f3263623c258fe66924082" +SRC_URI[sha256sum] = "a0096ac6859cfb61cf06dd9bc0a79a3333a4ec389ba311911d84df8ff2a1b9dc" + +inherit autotools + +export CC +export LD = "${CC}" + +VPXTARGET_armv5te = "armv5te-linux-gcc" +VPXTARGET_armv6 = "armv6-linux-gcc" +VPXTARGET_armv7a = "armv7-linux-gcc" +VPXTARGET ?= "generic-gnu" + +CONFIGUREOPTS = " \ + --target=${VPXTARGET} \ + --enable-vp8 \ + --enable-libs \ + --enable-ccache \ +" + +do_install() { + oe_runmake install + install -d ${D}${prefix} + cp -r ${S}/vpx-vp8-nopost-nodocs*${PV}/* ${D}${prefix}/ +} + |