bfe2fe2269
Update site to avoid redirections (HSTS, etc.) Version 5.0.3 - 12/17/2023 A memory leak fix in the prior version wasn't applied correctly, resulting in an invalid memory access causing a crash. Bug fixed. Version 5.0.2 - 11/8/2023 Fixed bug that caused crash when a CLIENT_KEY arrived out of order Fixed option handling on Windows when an argument is missing https://sourceforge.net/projects/uftp-multicast/files/Changes.txt/download Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
29 lines
780 B
Makefile
29 lines
780 B
Makefile
################################################################################
|
|
#
|
|
# uftp
|
|
#
|
|
################################################################################
|
|
|
|
UFTP_VERSION = 5.0.3
|
|
UFTP_SITE = https://downloads.sourceforge.net/project/uftp-multicast/source-tar
|
|
UFTP_LICENSE = GPL-3.0+
|
|
UFTP_LICENSE_FILES = LICENSE.txt
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
UFTP_DEPENDENCIES += host-pkgconf openssl
|
|
UFTP_MAKE_OPTS += CRYPT_LIB="`$(PKG_CONFIG_HOST_BINARY) --libs libcrypto`"
|
|
else
|
|
UFTP_MAKE_OPTS += NO_ENCRYPTION=1
|
|
endif
|
|
|
|
define UFTP_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(UFTP_MAKE_OPTS)
|
|
endef
|
|
|
|
define UFTP_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(UFTP_MAKE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|