blob: 11674af379fed971a2b4176fb56451d6fa70f8a7 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Theora Video Codec"
2DESCRIPTION = "The libtheora reference implementation provides the standard encoder and decoder under a BSD license."
3HOMEPAGE = "http://xiph.org/"
4BUGTRACKER = "https://trac.xiph.org/newticket"
5SECTION = "libs"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04006LICENSE = "BSD-3-Clause"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007LIC_FILES_CHKSUM = "file://COPYING;md5=cf91718f59eb6a83d06dc7bcaf411132"
8DEPENDS = "libogg"
9
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
11SRC_URI = "http://downloads.xiph.org/releases/theora/libtheora-${PV}.tar.bz2 \
12 file://no-docs.patch"
13
14SRC_URI[md5sum] = "292ab65cedd5021d6b7ddd117e07cd8e"
15SRC_URI[sha256sum] = "b6ae1ee2fa3d42ac489287d3ec34c5885730b1296f0801ae577a35193d3affbc"
16
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050017UPSTREAM_CHECK_REGEX = "libtheora-(?P<pver>\d+(\.\d)+)\.(tar\.gz|tgz)"
18
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019inherit autotools pkgconfig
20
21EXTRA_OECONF = "--disable-examples"