mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 20:10:35 -09:00
Release notes of this bugfix release: https://udpcast.linux.lu/mailman3/hyperkitty/list/udpcast@udpcast.linux.lu/thread/JTGZCUMSXYLVT73TIRJJICBX7AWIE4CA/ Switched _SITE and Config.in homepage URL to https. Fixes: https://autobuild.buildroot.net/results/acf/acf208588c2ca7e658a9a7bee49b947309d6b8be Upstream removed the tarball of the previous version causing autobuilder errors, first recorded March, 2nd 2025. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Julien: update package homepage url to use https] Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
693 B
Makefile
24 lines
693 B
Makefile
################################################################################
|
|
#
|
|
# udpcast
|
|
#
|
|
################################################################################
|
|
|
|
UDPCAST_VERSION = 20250223
|
|
UDPCAST_SITE = https://www.udpcast.linux.lu/download
|
|
UDPCAST_DEPENDENCIES = host-m4
|
|
UDPCAST_LICENSE = BSD-2-Clause, GPL-2.0+
|
|
UDPCAST_LICENSE_FILES = COPYING
|
|
UDPCAST_TARGETS = \
|
|
$(if $(BR2_PACKAGE_UDPCAST_RECEIVER),udp-receiver) \
|
|
$(if $(BR2_PACKAGE_UDPCAST_SENDER),udp-sender)
|
|
UDPCAST_MAKE_OPTS = $(UDPCAST_TARGETS)
|
|
|
|
define UDPCAST_INSTALL_TARGET_CMDS
|
|
$(foreach f,$(UDPCAST_TARGETS),\
|
|
$(INSTALL) -D -m 755 $(@D)/$(f) $(TARGET_DIR)/usr/sbin/$(f)
|
|
)
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|