summaryrefslogtreecommitdiff
path: root/recipes/gstreamer-1.0-osx-framework.recipe
blob: 251367f89ef967dc489a309b1f04c41388edef65 (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
47
48
49
50
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import re
import shutil
from cerbero.utils.shell import async_call_output
from cerbero.ide.xcode.fwlib import DynamicFrameworkLibrary

class Recipe(recipe.Recipe):
    name = 'gstreamer-1.0-osx-framework'
    version = '0.1'
    stype = SourceType.CUSTOM
    btype = BuildType.CUSTOM
    deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-bad-1.0']

    files_bins = ['pkg-config']
    files_library = ['lib/GStreamer']

    async def _get_installed_gst_libs(self):
        args = [self.env['PKG_CONFIG'], '--list-all']
        out = await async_call_output(args, logfile=self.logfile, cpu_bound=False, env=self.env)
        gstlibs = []
        gstlib_regex = re.compile(r'^(gstreamer-.*1\.0)\s+')
        for line in out.split('\n'):
            m = gstlib_regex.search(line)
            # Not a gstreamer pkgconfig file
            if not m:
                continue
            gstlib = m.groups()[0]
            # Not a gstreamer library pkgconfig file
            if 'gstreamer-plugins-' in gstlib:
                continue
            # The gst-rtsp-server library should not be in this; only core,
            # base, and bad libraries are allowed.
            if 'rtsp-server' in gstlib:
                continue
            gstlibs.append(gstlib)
        return gstlibs

    async def install(self):
        install_name = os.path.join(self.config.prefix, 'lib', 'GStreamer')
        libs = await self._get_installed_gst_libs()
        if not libs:
            raise FatalError('No gstreamer libraries were found in the prefix!')
        fwlib = DynamicFrameworkLibrary(self.config.min_osx_sdk_version, self.config.target_distro, install_name, install_name, libs, self.config.target_arch, env=self.env)
        fwlib.create()
        # Copy pkg-config binary for projects that can't use the framework,
        # f.ex., the gstreamer rust bindings. This binary is standalone, so we
        # do not need to mangle the install_name entries.
        pkgconfig = os.path.join(self.config.build_tools_prefix, 'bin', 'pkg-config')
        bindir = os.path.join(self.config.prefix, 'bin')
        shutil.copy(pkgconfig, bindir)