mirror of
https://git.yoctoproject.org/poky
synced 2026-07-01 14:13:39 +02:00
If the file is expected to exist, then we should always be using require so that if it doesn't we get an error rather than some other more obscure failure later on. (From OE-Core rev: 603ae6eb487489e65da69c68e532cb767ccc1fc2) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
39 lines
1.7 KiB
BlitzBasic
39 lines
1.7 KiB
BlitzBasic
DEFAULT_PREFERENCE = "-1"
|
|
|
|
require gstreamer1.0-libav.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://COPYING.LIB;md5=6762ed442b3822387a51c92d928ead0d \
|
|
file://ext/libav/gstav.h;beginline=1;endline=18;md5=a752c35267d8276fd9ca3db6994fca9c \
|
|
file://gst-libs/ext/libav/LICENSE.md;md5=acda96fe91ccaabc9cd9d541806a0d37 \
|
|
file://gst-libs/ext/libav/COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://gst-libs/ext/libav/COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://gst-libs/ext/libav/COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \
|
|
file://gst-libs/ext/libav/COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
|
|
|
|
# To build using the system libav/ffmpeg, append "libav" to PACKAGECONFIG
|
|
# and remove the ffmpeg sources from SRC_URI below. However, first note the
|
|
# warnings in gstreamer1.0-libav.inc
|
|
SRC_URI = " \
|
|
git://anongit.freedesktop.org/gstreamer/gst-libav;branch=1.8;name=base \
|
|
git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \
|
|
git://source.ffmpeg.org/ffmpeg;destsuffix=git/gst-libs/ext/libav;name=ffmpeg;branch=release/3.0 \
|
|
file://0001-Disable-yasm-for-libav-when-disable-yasm.patch \
|
|
file://workaround-to-build-gst-libav-for-i586-with-gcc.patch \
|
|
"
|
|
|
|
PV = "1.8.2+git${SRCPV}"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
|
|
|
|
SRCREV_base = "f285cf0fd799cc3b46b5cecaaa439d5a2a38a9b7"
|
|
SRCREV_common = "f363b3205658a38e84fa77f19dee218cd4445275"
|
|
SRCREV_ffmpeg = "c66f4d1ae64dffaf456d05cbdade02054446f499"
|
|
SRCREV_FORMAT = "base"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure_prepend() {
|
|
${S}/autogen.sh --noconfigure
|
|
}
|