summaryrefslogtreecommitdiff
path: root/recipes/gstreamer-1.0.recipe
blob: 43be0382d38537b2b53fe542a5b1a2766f57b7a0 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import shutil

class Recipe(custom.GStreamer):
    name = 'gstreamer-1.0'
    btype = BuildType.MESON
    tarball_checksum = '9cafdd23bd180f1681c56cd3a6879a8497ccf24da6f422a6b6f356fa074a8481'
    deps = ['glib']
    bash_completions = ['gst-inspect-1.0', 'gst-launch-1.0']

    files_bins = ['gst-inspect-1.0',
                  'gst-typefind-1.0',
                  'gst-launch-1.0']

    files_libs = ['libgstbase-1.0', 'libgstcontroller-1.0',
                  'libgstnet-1.0', 'libgstreamer-1.0', 'libgstcheck-1.0']

    files_plugins_core = [
        '%(libdir)s/gstreamer-1.0/libgstcoreelements%(mext)s',
        '%(libdir)s/gstreamer-1.0/libgstcoretracers%(mext)s'
    ]
    files_plugins_core_devel = [
        '%(libdir)s/gstreamer-1.0/libgstcoreelements.a', '%(libdir)s/gstreamer-1.0/libgstcoreelements.la',
        '%(libdir)s/gstreamer-1.0/libgstcoretracers.a', '%(libdir)s/gstreamer-1.0/libgstcoretracers.la',
    ]

    files_misc = ['libexec/gstreamer-1.0/gst-plugin-scanner%(bext)s']

    files_devel = [
            'include/gstreamer-1.0/gst/*.h',
            'include/gstreamer-1.0/gst/base',
            'include/gstreamer-1.0/gst/check',
            'include/gstreamer-1.0/gst/controller',
            'include/gstreamer-1.0/gst/net',
            '%(libdir)s/pkgconfig/gstreamer-1.0.pc',
            '%(libdir)s/pkgconfig/gstreamer-check-1.0.pc',
            '%(libdir)s/pkgconfig/gstreamer-base-1.0.pc',
            '%(libdir)s/pkgconfig/gstreamer-controller-1.0.pc',
            '%(libdir)s/pkgconfig/gstreamer-net-1.0.pc',
    ]

    platform_files_devel = {
        Platform.ANDROID: ['share/gst-android/ndk-build/GStreamer.java'],
    }

    files_lang = ['gstreamer-1.0']

    files_typelibs = [
        'Gst-1.0',
        'GstBase-1.0',
        'GstCheck-1.0',
        'GstController-1.0',
        'GstNet-1.0'
        ]


    def prepare(self):
        if self.config.target_platform == Platform.IOS:
            # iOS only supports static builds so plugins must be linked
            # and registered statically.
            self.meson_options['registry'] = 'false'

        if self.config.variants.nodebug:
            self.append_env('CFLAGS', '-DGST_LEVEL_MAX=GST_LEVEL_FIXME')

        if self.config.variants.unwind:
            self.deps += ['libunwind']
            self.meson_options['libunwind'] = 'enabled'
        else:
            self.meson_options['libunwind'] = 'disabled'

        if self.using_msvc():
            if self.config.variants.uwp:
                # Most symbols in DbgHelp.h are not allowed for UWP
                self.meson_options['dbghelp'] = 'disabled'
            else:
                self.meson_options['dbghelp'] = 'enabled'

        # Ship the PTP helper process if the rust variant is enabled and this
        # is not a mobile platform.
        if self.config.variants.rust and \
           self.config.target_platform not in [Platform.IOS, Platform.ANDROID]:
            self.meson_options['ptp-helper'] = 'enabled'
            self.files_misc.append('libexec/gstreamer-1.0/gst-ptp-helper%(bext)s')