blob: dacc92034573d6ccaf48eb7a54554f9160465b80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libtheora'
version = '1.1.1'
license = 'BSD'
deps = ['libogg', 'libvorbis']
files_libs = ['libtheora', 'libtheoradec', 'libtheoraenc']
files_bins = ['dvconnect', 'encodedv', 'dubdv']
files_devel = ['include/theora', 'lib/pkgconfig/libtheora.pc',
'lib/pkgconfig/libtheoraenc.pc', 'lib/pkgconfig/libtheoradec.pc']
def prepare(self):
if self.config.target_platform == Platform.WINDOWS:
self.configure_options = ' --disable-spec --disable-doc'
|