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>
19 lines
615 B
Makefile
19 lines
615 B
Makefile
################################################################################
|
|
#
|
|
# gst1-libav
|
|
#
|
|
################################################################################
|
|
|
|
GST1_LIBAV_VERSION = 1.10.4
|
|
GST1_LIBAV_SOURCE = gst-libav-$(GST1_LIBAV_VERSION).tar.xz
|
|
GST1_LIBAV_SITE = https://gstreamer.freedesktop.org/src/gst-libav
|
|
GST1_LIBAV_CONF_OPTS = --with-system-libav
|
|
GST1_LIBAV_DEPENDENCIES = \
|
|
host-pkgconf ffmpeg gstreamer1 gst1-plugins-base \
|
|
$(if $(BR2_PACKAGE_BZIP2),bzip2) \
|
|
$(if $(BR2_PACKAGE_XZ),xz)
|
|
GST1_LIBAV_LICENSE = GPL-2.0+
|
|
GST1_LIBAV_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|