mirror of
git://git.yoctoproject.org/poky
synced 2026-09-16 23:33:08 +00:00
(From OE-Core rev: accb3a6e7d3b82daa4b6ac72cef333bdfa24d02a) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
BlitzBasic
DEFAULT_PREFERENCE = "-1"
|
|
|
|
include gstreamer1.0-plugins-base.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \
|
|
file://COPYING.LIB;md5=6762ed442b3822387a51c92d928ead0d \
|
|
file://common/coverage/coverage-report.pl;beginline=2;endline=17;md5=a4e1830fce078028c8f0974161272607"
|
|
|
|
SRC_URI = " \
|
|
git://anongit.freedesktop.org/gstreamer/gst-plugins-base;name=base \
|
|
git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \
|
|
file://make-gio_unix_2_0-dependency-configurable.patch \
|
|
"
|
|
|
|
PV = "1.7.1+git${SRCPV}"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
|
|
|
|
SRCREV_base = "641428966e09d16b0a46540040f2faf3791eb7c9"
|
|
SRCREV_common = "86e46630ed8af8d94796859db550a9c3d89c9f65"
|
|
SRCREV_FORMAT = "base"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure_prepend() {
|
|
|
|
# Temp solution for git snapshot: relax version checks so we can build against GStreamer 1.7.1
|
|
sed 's/^GST_REQ=1\.7\.1\.1/GST_REQ=1.7.1/' -i ${S}/configure.ac
|
|
|
|
${S}/autogen.sh --noconfigure
|
|
}
|