xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Yet Another V4L2 Test Application"
2LICENSE = "GPL-2.0-only"
3LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
4
5SRC_URI = "git://git.ideasonboard.org/yavta.git;branch=master \
6          "
7SRCREV = "65f740aa1758531fd810339bc1b7d1d33666e28a"
8
9PV = "0.0"
10PR = "r2"
11S = "${WORKDIR}/git"
12
13EXTRA_OEMAKE = "-e MAKEFLAGS="
14
15# The yavta sources include copies of the headers required to build in the
16# include directory.  The Makefile uses CFLAGS to include these, but since
17# we override the CFLAGS then we need to add this include path back in.
18CFLAGS += "-I${S}/include"
19
20do_install() {
21    install -d ${D}${bindir}
22    install -m 0755 yavta ${D}${bindir}
23}
24
25
26