af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
525 B
Makefile
16 lines
525 B
Makefile
################################################################################
|
|
#
|
|
# v4l2grab
|
|
#
|
|
################################################################################
|
|
|
|
V4L2GRAB_VERSION = f8d8844d52387b3db7b8736f5e86156d9374f781
|
|
V4L2GRAB_SITE = $(call github,twam,v4l2grab,$(V4L2GRAB_VERSION))
|
|
V4L2GRAB_LICENSE = GPL-2.0+
|
|
V4L2GRAB_LICENSE_FILES = LICENSE.md
|
|
# Fetched from github, no pre-generated configure script provided
|
|
V4L2GRAB_AUTORECONF = YES
|
|
V4L2GRAB_DEPENDENCIES = jpeg libv4l
|
|
|
|
$(eval $(autotools-package))
|