98d679f49d
Encrypted UDP based FTP with multicast. Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
569 B
Makefile
22 lines
569 B
Makefile
################################################################################
|
|
#
|
|
# uftp
|
|
#
|
|
################################################################################
|
|
|
|
UFTP_VERSION = 4.9.9
|
|
UFTP_SITE = http://sourceforge.net/projects/uftp-multicast/files/source-tar
|
|
UFTP_DEPENDENCIES = openssl
|
|
UFTP_LICENSE = GPL-3.0+
|
|
UFTP_LICENSE_FILES = LICENSE.txt
|
|
|
|
define UFTP_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define UFTP_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|