blob: e7d44d90271ead467fa25c79eaf52d9a600f1b01 (
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
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.utils import shell
class Recipe(custom.GStreamerStatic):
name = 'gst-editing-services-1.0-static'
version = '1.5'
gstreamer_version = '1.0'
licenses = [License.LGPLv2Plus]
extra_configure_options = "--enable-static"
remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gst-editing-services'}
commit = '1.6.0'
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-good-1.0', 'gst-validate']
files_plugins_ges_devel = ['libgstnle']
def prepare(self):
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'
custom.GStreamerStatic.prepare(self)
|