diff options
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc index 6f279577be..651119e2ed 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | |||
@@ -30,7 +30,9 @@ oe_runconf_prepend() { | |||
30 | fi | 30 | fi |
31 | } | 31 | } |
32 | 32 | ||
33 | python __anonymous () { | 33 | SRC_URI = "${@get_gst_srcuri(d)}" |
34 | |||
35 | def get_gst_srcuri(d): | ||
34 | # check if expected prefix is present | 36 | # check if expected prefix is present |
35 | prefix = "gstreamer1.0-" | 37 | prefix = "gstreamer1.0-" |
36 | bpn = d.getVar("BPN", True) | 38 | bpn = d.getVar("BPN", True) |
@@ -43,10 +45,10 @@ python __anonymous () { | |||
43 | branch = d.getVar("GSTREAMER_1_0_GIT_BRANCH", True) | 45 | branch = d.getVar("GSTREAMER_1_0_GIT_BRANCH", True) |
44 | 46 | ||
45 | if pv == "git": | 47 | if pv == "git": |
46 | d.setVar("SRC_URI", "git://anongit.freedesktop.org/gstreamer/%s;branch=%s" % (gstpkg_basename, branch)) | 48 | s = "git://anongit.freedesktop.org/gstreamer/%s;branch=%s" % (gstpkg_basename, branch) |
47 | else: | 49 | else: |
48 | d.setVar("SRC_URI", "http://gstreamer.freedesktop.org/src/%s/%s-%s.tar.xz" % (gstpkg_basename, gstpkg_basename, pv)) | 50 | s = "http://gstreamer.freedesktop.org/src/%s/%s-%s.tar.xz" % (gstpkg_basename, gstpkg_basename, pv) |
49 | } | 51 | return s |
50 | 52 | ||
51 | delete_liblink_m4_file() { | 53 | delete_liblink_m4_file() { |
52 | # This m4 file contains nastiness which conflicts with libtool 2.2.2 | 54 | # This m4 file contains nastiness which conflicts with libtool 2.2.2 |