blob: 448de890cfd1ca45bbbb09b7711eb1f4b8954711 (
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
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'mpg123'
version = '1.25.10'
stype = SourceType.TARBALL
url = 'http://downloads.sourceforge.net/project/mpg123/mpg123/1.25.10/mpg123-1.25.10.tar.bz2'
licenses = [License.LGPLv2_1]
autoreconf = True
configure_options = '--with-audio=dummy --enable-static'
patches = ['mpg123/0001-Disable-tools-and-libout123-library.patch']
files_libs = ['libmpg123']
files_devel = ['include/mpg123.h', 'include/fmt123.h', 'lib/pkgconfig/libmpg123.pc']
def prepare(self):
if self.config.target_platform in [Platform.ANDROID]:
if self.config.target_arch == Architecture.ARM:
# Disable thumb mode to get the optimizations compiled properly
self.new_env['CFLAGS'] = os.environ['CFLAGS'].replace('-mthumb', '')
self.new_env['CCASFLAGS'] = os.environ.get('CCASFLAGS', '').replace('-mthumb', '')
elif self.config.target_arch == Architecture.X86:
# The custom assembly breaks compiling an application by
# using relocations.
self.configure_options += ' --with-cpu=generic '
if self.config.target_platform in [Platform.IOS]:
if self.config.target_arch == Architecture.X86:
# make sure we use 32bit asm
self.configure_options += ' --with-cpu=x86 '
|