summaryrefslogtreecommitdiff
path: root/recipes/mpg123.recipe
blob: f71b19482bc973771ed120f0658b010856f61048 (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
# -*- 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 = 'https://downloads.sourceforge.net/mpg123/mpg123-%(version)s.tar.bz2'
    tarball_checksum = '6c1337aee2e4bf993299851c70b7db11faec785303cfca3a5c3eb5f329ba7023'
    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.append_env('CFLAGS', '-marm')
                self.append_env('CCASFLAGS', '-marm')
            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 '