summaryrefslogtreecommitdiff
path: root/recipes/flac.recipe
blob: 83bbc2b1f23688d008243eb7b876d68450f0ba11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.utils import shell


class Recipe(recipe.Recipe):
    name = 'flac'
    version = '1.3.2'
    # only libraries are Xiph.org (aka BSD-like), tools are GPLv2+ and defined below
    licenses = [{License.BSD_like: ['COPYING.Xiph']}]
    stype = SourceType.TARBALL
    url = 'xiph://'
    tarball_checksum = '91cfc3ed61dc40f47f050a109b08610667d73477af6ef36dcad31c31a4a8d53f'
    deps = ['libogg']
    configure_options = ' --disable-cpplibs --enable-static'

    autoreconf = True
    files_libs = ['libFLAC']

    files_bins = ['flac', 'metaflac']
    tarball_checksum = '91cfc3ed61dc40f47f050a109b08610667d73477af6ef36dcad31c31a4a8d53f'
    licenses_bins = [License.GPLv2Plus]

    files_devel = [
        'lib/pkgconfig/flac.pc',
        'include/FLAC',
    ]

    # Skipping because it takes too long
    make_check = None

    def prepare(self):
        if self.config.target_platform in [Platform.DARWIN, Platform.IOS]:
            if self.config.target_arch == Architecture.X86:
                self.configure_options += ' --disable-asm-optimizations'
        if self.config.target_platform in [Platform.ANDROID, Platform.IOS]:
            self.autoreconf = True

    def configure(self):
        if self.config.target_platform == Platform.ANDROID:
            if self.config.target_arch == Architecture.X86:
                # for missing sys/ucontext.h
                shell.replace(os.path.join(self.build_dir, 'src', 'libFLAC',
                    'cpu.c'),
                    {'#  undef USE_OBSOLETE_SIGCONTEXT_FLAVOR':
                     '#define USE_OBSOLETE_SIGCONTEXT_FLAVOR'})
        super(Recipe, self).configure()