96e9480fbc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-2c is BSD-2-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-2c/BSD-2-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
32 lines
868 B
Makefile
32 lines
868 B
Makefile
################################################################################
|
|
#
|
|
# udpcast
|
|
#
|
|
################################################################################
|
|
|
|
UDPCAST_VERSION = 20120424
|
|
UDPCAST_SITE = http://www.udpcast.linux.lu/download
|
|
UDPCAST_DEPENDENCIES = host-m4
|
|
UDPCAST_LICENSE = BSD-2-Clause, GPL-2.0+
|
|
UDPCAST_LICENSE_FILES = COPYING
|
|
|
|
define UDPCAST_REMOVE_UDP_SENDER
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-sender
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-sender.1
|
|
endef
|
|
|
|
ifneq ($(BR2_PACKAGE_UDPCAST_SENDER),y)
|
|
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_SENDER
|
|
endif
|
|
|
|
define UDPCAST_REMOVE_UDP_RECEIVER
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver.1
|
|
endef
|
|
|
|
ifneq ($(BR2_PACKAGE_UDPCAST_RECEIVER),y)
|
|
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_RECEIVER
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|