diff options
Diffstat (limited to 'meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb')
-rw-r--r-- | meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb b/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb new file mode 100644 index 0000000000..361d2c6e4a --- /dev/null +++ b/meta/recipes-multimedia/libtheora/libtheora_1.2.0.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "Theora Video Codec" | ||
2 | DESCRIPTION = "The libtheora reference implementation provides the standard encoder and decoder under a BSD license." | ||
3 | HOMEPAGE = "http://xiph.org/" | ||
4 | BUGTRACKER = "https://trac.xiph.org/newticket" | ||
5 | SECTION = "libs" | ||
6 | LICENSE = "BSD-3-Clause" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=cf91718f59eb6a83d06dc7bcaf411132" | ||
8 | DEPENDS = "libogg" | ||
9 | |||
10 | |||
11 | SRC_URI = "http://downloads.xiph.org/releases/theora/libtheora-${PV}.tar.xz \ | ||
12 | file://0001-add-missing-files.patch" | ||
13 | |||
14 | SRC_URI[sha256sum] = "ebdf77a8f5c0a8f7a9e42323844fa09502b34eb1d1fece7b5f54da41fe2122ec" | ||
15 | |||
16 | UPSTREAM_CHECK_REGEX = "libtheora-(?P<pver>\d+(\.\d)+)\.(tar\.gz|tgz)" | ||
17 | |||
18 | inherit autotools pkgconfig | ||
19 | |||
20 | EXTRA_OECONF = "--disable-examples --disable-doc" | ||
21 | |||
22 | # these old architectures don't support all the instructions from the asm source files | ||
23 | EXTRA_OECONF:append:armv4 = " --disable-asm " | ||
24 | EXTRA_OECONF:append:armv5 = " --disable-asm " | ||