blob: c84217898287f66a9e9babbca834535a3f10243e (
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.1'
# only libraries are Xiph.org (aka BSD-like), tools are GPLv2+ and defined below
licenses = [License.BSD_like]
stype = SourceType.TARBALL
url = 'http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz'
patches = ['flac/0002-fix-autoreconf.patch',
]
deps = [ 'libogg' ]
configure_options = ' --disable-cpplibs --enable-static'
autoreconf = True
files_libs = ['libFLAC']
files_bins = ['flac', 'metaflac']
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()
|