Files
buildroot/package/udpcast/udpcast.mk
Bernd Kuhls bc3128fc57 package/udpcast: bump version to 20250223
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>
2025-12-21 14:36:30 +01:00

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))