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
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'gstreamer-1.0'
version = '1.0'
licenses = [License.LGPLv2_1Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--enable-static --program-prefix= --disable-instrospection --disable-examples "
commit = 'origin/1.2'
deps = ['glib', 'gtk-doc-lite']
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']
platform_files_libs = {
Platform.LINUX: ['libgstcheck-1.0'],
Platform.ANDROID: ['libgstcheck-1.0'],
Platform.DARWIN: ['libgstcheck-1.0'],
}
files_plugins_core = ['lib/gstreamer-1.0/libgstcoreelements%(mext)s']
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/controller',
'include/gstreamer-1.0/gst/net',
'lib/pkgconfig/gstreamer-1.0.pc',
'lib/pkgconfig/gstreamer-base-1.0.pc',
'lib/pkgconfig/gstreamer-controller-1.0.pc',
'lib/pkgconfig/gstreamer-net-1.0.pc',
]
platform_files_devel = {
Platform.LINUX: ['include/gstreamer-1.0/gst/check', 'lib/pkgconfig/gstreamer-check-1.0.pc', 'share/aclocal/gst-element-check-1.0.m4'],
Platform.ANDROID: ['include/gstreamer-1.0/gst/check', 'lib/pkgconfig/gstreamer-check-1.0.pc', 'share/aclocal/gst-element-check-1.0.m4'],
Platform.DARWIN: ['include/gstreamer-1.0/gst/check', 'lib/pkgconfig/gstreamer-check-1.0.pc', 'share/aclocal/gst-element-check-1.0.m4'],
}
files_lang = ['gstreamer-1.0']
def prepare(self):
self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gstreamer'))
self.remotes['upstream'] = self.remotes['origin']
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc --disable-docbook'
if self.config.target_platform == Platform.IOS:
# iOS only supports static builds so plugins must be linked
# and registered statically.
self.configure_options += ' --disable-registry '
if self.config.variants.nodebug:
self.configure_options += ' --disable-gst-debug'
|