# -*- 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)