diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-04-23 11:25:11 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-04-23 11:25:11 +0200 |
commit | b56b395d2ee7316a7928d5fe3ca3f86914328a7a (patch) | |
tree | 592f09922cdc0872be99c367fac4dde9cd70bbb2 /recipes/gst-plugins-good-1.0.recipe | |
parent | 018bdb8498605b6f0f9ea2a9fc183afd2acbbc1e (diff) |
gstreamer-1.0: Fix repository URLs
Always get everything from the GStreamer project, not GStreamer SDK
Diffstat (limited to 'recipes/gst-plugins-good-1.0.recipe')
-rw-r--r-- | recipes/gst-plugins-good-1.0.recipe | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/gst-plugins-good-1.0.recipe b/recipes/gst-plugins-good-1.0.recipe index 56a332e1..c4821c83 100644 --- a/recipes/gst-plugins-good-1.0.recipe +++ b/recipes/gst-plugins-good-1.0.recipe @@ -7,7 +7,6 @@ class Recipe(recipe.Recipe): licenses = [License.LGPLv2Plus] config_sh = 'sh ./autogen.sh --noconfigure && ./configure' configure_options = '--disable-introspection --disable-examples --disable-oss4 --disable-oss --disable-dv1394 --disable-aalib --disable-libcaca --disable-jack --disable-shout2 --with-package-origin="http://www.gstreamer.com" --with-package-name=\'GStreamer Good Plugins (GStreamer SDK)\' ' - remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-good'} commit = 'upstream/1.0' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'jpeg', 'libpng', 'speex', 'gdk-pixbuf', 'libsoup', @@ -110,6 +109,9 @@ class Recipe(recipe.Recipe): } def prepare(self): + self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-good')) + self.remotes['upstream'] = self.remotes['origin'] + self.append_env['CFLAGS'] = " -Wno-error " self.append_env['CXXFLAGS'] = " -Wno-error " self.append_env['CPPFLAGS'] = " -Wno-error " |