You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
868 B
31 lines
868 B
################################################################################
|
|
#
|
|
# udpcast
|
|
#
|
|
################################################################################
|
|
|
|
UDPCAST_VERSION = 20200328
|
|
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))
|
|
|