summaryrefslogtreecommitdiff
path: root/recipes/orc.recipe
blob: d41f21dc38ef34139f6ff6987048b51b7eaf864b (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
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.tools.libtool import LibtoolLibrary

class Recipe(recipe.Recipe):
    name = 'orc'
    version = '0.4.29'

    stype = SourceType.TARBALL
    # These properties are only used when stype is TARBALL
    url = 'https://gstreamer.freedesktop.org/src/orc/orc-%(version)s.tar.xz'
    tarball_checksum = '4f8901f9144b5ec17dffdb33548b5f4c7f8049b0d1023be3462cdd64ec5a3ab2'
    # These properties are only used when stype is GIT
    remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/orc.git'}
    commit = 'origin/master'

    btype = BuildType.MESON
    licenses = [{License.BSD_like: ['COPYING']}]
    meson_options = {'benchmarks': 'disabled', 'tests': 'disabled',
                     'tools': 'enabled', 'orc-test': 'enabled'}

    files_libs = ['liborc-0.4']
    files_devel = ['include/orc-0.4', 'lib/pkgconfig/orc-0.4.pc',
        'share/aclocal/orc.m4', 'bin/orcc%(bext)s']

    def prepare(self):
        # Don't build testing helper library on ios
        if self.config.target_platform != Platform.IOS:
            self.files_libs.append('liborc-test-0.4')
            self.files_devel.append('bin/orc-bugreport%(bext)s')
        else:
            self.meson_options['orc-test'] = 'disabled'

    def post_install(self):
        dependency_libs = []
        if self.config.target_platform == Platform.ANDROID:
            dependency_libs += ['-lm', '-llog']

        lib = LibtoolLibrary('orc-0.4', None, None, None, self.config.libdir,
                self.config.target_platform, deps=dependency_libs)
        lib.save()
        if self.config.target_platform != Platform.IOS:
            lib = LibtoolLibrary('orc-test-0.4', None, None, None, self.config.libdir,
                    self.config.target_platform, deps=dependency_libs + ['orc-0.4']).save()
        super().post_install()