blob: 9563ba31b449a40a640f7bd69d2ff8f734508d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$(eval $(call import.MODULE.defs,LIBTHEORA,libtheora,LIBOGG LIBVORBIS))
$(eval $(call import.CONTRIB.defs,LIBTHEORA))
LIBTHEORA.FETCH.url = https://download.handbrake.fr/handbrake/contrib/libtheora-1.1.1.tar.bz2
LIBTHEORA.FETCH.url += https://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2
LIBTHEORA.FETCH.sha256 = b6ae1ee2fa3d42ac489287d3ec34c5885730b1296f0801ae577a35193d3affbc
LIBTHEORA.CONFIGURE.extra = \
--disable-examples \
--disable-oggtest \
--disable-sdltest \
--disable-vorbistest \
--disable-spec \
--with-ogg=$(call fn.ABSOLUTE,$(CONTRIB.build/)) \
--with-vorbis=$(call fn.ABSOLUTE,$(CONTRIB.build/)) \
HAVE_PKG_CONFIG=no
|