summaryrefslogtreecommitdiff
path: root/recipes/speex.recipe
blob: e4147e0cd97545660b3d64f9ca95fc9bb12827eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python


class Recipe(recipe.Recipe):
    name = 'speex'
    version = '1.2rc1'
    licenses = [License.BSD_like]
    deps = ['libogg']

    files_libs = ['libspeex', 'libspeexdsp']
    files_bins = ['speexdec', 'speexenc']
    files_devel = ['include/speex', 'lib/pkgconfig/speex.pc',
        'lib/pkgconfig/speexdsp.pc']

    def prepare(self):
        if self.config.target_platform == Platform.ANDROID:
            self.autoreconf = True