9254f02266
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2/LGPLv2+ is LGPL-2.0/LGPL-2.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2(\+)?/LGPL-2.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
819 B
Makefile
28 lines
819 B
Makefile
################################################################################
|
|
#
|
|
# gst1-rtsp-server
|
|
#
|
|
################################################################################
|
|
|
|
GST1_RTSP_SERVER_VERSION = 1.10.4
|
|
GST1_RTSP_SERVER_SOURCE = gst-rtsp-server-$(GST1_RTSP_SERVER_VERSION).tar.xz
|
|
GST1_RTSP_SERVER_SITE = http://gstreamer.freedesktop.org/src/gst-rtsp-server
|
|
GST1_RTSP_SERVER_LICENSE = LGPL-2.0+
|
|
GST1_RTSP_SERVER_LICENSE_FILES = COPYING COPYING.LIB
|
|
GST1_RTSP_SERVER_INSTALL_STAGING = YES
|
|
GST1_RTSP_SERVER_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
gstreamer1 \
|
|
gst1-plugins-base \
|
|
gst1-plugins-good
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCGROUP),y)
|
|
GST1_RTSP_SERVER_DEPENDENCIES += libcgroup
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD),y)
|
|
GST1_RTSP_SERVER_DEPENDENCIES += gst1-plugins-bad
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|