diff options
Diffstat (limited to 'recipes/gst-plugins-gl-1.0-static.recipe')
-rw-r--r-- | recipes/gst-plugins-gl-1.0-static.recipe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/gst-plugins-gl-1.0-static.recipe b/recipes/gst-plugins-gl-1.0-static.recipe new file mode 100644 index 00000000..b28ca8c8 --- /dev/null +++ b/recipes/gst-plugins-gl-1.0-static.recipe @@ -0,0 +1,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-plugins-gl-1.0-static' + version = '1.0' + gstreamer_version = '1.0' + licenses = [License.LGPLv2Plus] + config_sh = 'sh ./autogen.sh --noconfigure && ./configure' + extra_configure_options = "--disable-examples " + make_check = None + commit = 'upstream/master' + deps = ['gstreamer', 'gst-plugins-base' ] + + files_plugins_devel = ['libgstopengl'] + + def prepare(self): + if self.config.target_platform != Platform.LINUX: + self.configure_options += ' --disable-gtk-doc' + + super(Recipe, self).prepare() + + self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-gl')) + self.remotes['upstream'] = self.remotes['origin'] + |