diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2015-05-15 11:12:38 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-05-15 11:12:38 +0300 |
commit | 442d1d9a25a87aadf83f103f919c0cceb1532c35 (patch) | |
tree | 204a8c2075bb65ec3d8f317772842b934a621942 /recipes/gst-plugins-ugly-1.0-static.recipe | |
parent | 8ceb700456242221f0cd1868d9193e8bc9830db5 (diff) |
Directly set GIT remotes instead of doing that in prepare()
Diffstat (limited to 'recipes/gst-plugins-ugly-1.0-static.recipe')
-rw-r--r-- | recipes/gst-plugins-ugly-1.0-static.recipe | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes/gst-plugins-ugly-1.0-static.recipe b/recipes/gst-plugins-ugly-1.0-static.recipe index 9ad32ff4..e9ceb25b 100644 --- a/recipes/gst-plugins-ugly-1.0-static.recipe +++ b/recipes/gst-plugins-ugly-1.0-static.recipe @@ -7,6 +7,7 @@ class Recipe(custom.GStreamerStatic): gstreamer_version = '1.0' licenses = [License.LGPLv2Plus] extra_configure_options = "--enable-static --disable-iec958 --disable-mpegstream --disable-cdio --disable-sidplay --disable-twolame" + remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly'} commit = 'origin/master' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'a52dec', 'opencore-amr', 'libdvdread', 'libmpeg2', 'libmad', 'x264', 'lame'] @@ -45,7 +46,3 @@ class Recipe(custom.GStreamerStatic): self.files_plugins_dvd_devel.remove('libgstdvdread') custom.GStreamerStatic.prepare(self) - - self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-ugly')) - self.remotes['upstream'] = self.remotes['origin'] - |