summaryrefslogtreecommitdiffstats
path: root/recipes/webm
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2010-10-07 12:39:29 -0700
committerKhem Raj <raj.khem@gmail.com>2010-10-07 12:39:29 -0700
commitdba9226506d159e2c9c57e85b66cf46f6849192f (patch)
tree0beb68a8818b8ca3e2d1ade61c874bc4ecf1d51c /recipes/webm
parent071ed13f7f23b7e1778ab90a35ab67986937180b (diff)
downloadopenembedded-dba9226506d159e2c9c57e85b66cf46f6849192f.tar.gz
libvpx.inc: Do not inherit autotools
* Define own versions of do_compile and do_configure this package has configure but its not autconf one. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/webm')
-rw-r--r--recipes/webm/libvpx.inc11
1 files changed, 7 insertions, 4 deletions
diff --git a/recipes/webm/libvpx.inc b/recipes/webm/libvpx.inc
index d773d3ab70..00eba2689a 100644
--- a/recipes/webm/libvpx.inc
+++ b/recipes/webm/libvpx.inc
@@ -1,12 +1,10 @@
DESCRIPTION = "vpx Multi-Format Codec SDK"
LICENSE = "BSD"
-INC_PR = "r4"
+INC_PR = "r5"
SRC_URI = "http://webm.googlecode.com/files/libvpx-${PV}.tar.bz2"
-inherit autotools
-
CFLAGS += "-fPIC"
export CC
@@ -23,7 +21,12 @@ CONFIGUREOPTS = " \
--enable-libs \
--disable-install-docs \
"
-
+do_configure() {
+ ${S}/configure ${CONFIGUREOPTS}
+}
+do_compile() {
+ oe_runmake
+}
do_install() {
oe_runmake install DESTDIR=${D}
}