mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 05:01:58 +02:00
Upgrade yavta to latest version and drop downstream patch from 2014 which was never upstreamed and no longer applies to upstream either. The patch had sufficient time to make it upstream. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Martin Jansa <Martin.Jansa@gmail.com> Cc: Mike Crowe <mac@mcrowe.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
670 B
BlitzBasic
26 lines
670 B
BlitzBasic
SUMMARY = "Yet Another V4L2 Test Application"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
SRC_URI = "git://git.ideasonboard.org/yavta.git \
|
|
"
|
|
SRCREV = "65f740aa1758531fd810339bc1b7d1d33666e28a"
|
|
|
|
PV = "0.0"
|
|
PR = "r2"
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "-e MAKEFLAGS="
|
|
|
|
# The yavta sources include copies of the headers required to build in the
|
|
# include directory. The Makefile uses CFLAGS to include these, but since
|
|
# we override the CFLAGS then we need to add this include path back in.
|
|
CFLAGS += "-I${S}/include"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 yavta ${D}${bindir}
|
|
}
|
|
|
|
|