mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
package/uftp: new package
Encrypted UDP based FTP with multicast. Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
34c046d528
commit
98d679f49d
@ -219,6 +219,7 @@ F: package/stress/
|
||||
N: Asaf Kahlon <asafka7@gmail.com>
|
||||
F: package/libuv/
|
||||
F: package/python*
|
||||
F: package/uftp/
|
||||
F: package/zeromq/
|
||||
|
||||
N: Ash Charles <ash.charles@savoirfairelinux.com>
|
||||
|
@ -2029,6 +2029,7 @@ endif
|
||||
source "package/tunctl/Config.in"
|
||||
source "package/tvheadend/Config.in"
|
||||
source "package/udpcast/Config.in"
|
||||
source "package/uftp/Config.in"
|
||||
source "package/uhttpd/Config.in"
|
||||
source "package/ulogd/Config.in"
|
||||
source "package/ushare/Config.in"
|
||||
|
7
package/uftp/Config.in
Normal file
7
package/uftp/Config.in
Normal file
@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_UFTP
|
||||
bool "uftp"
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
help
|
||||
Encrypted UDP based FTP with multicast.
|
||||
|
||||
http://uftp-multicast.sourceforge.net/
|
3
package/uftp/uftp.hash
Normal file
3
package/uftp/uftp.hash
Normal file
@ -0,0 +1,3 @@
|
||||
# Locally computed sha256
|
||||
sha256 c04bc75a88fc3d57504269f260be4d0b1bc440508b5a5ca587df6c16b771aa48 uftp-4.9.9.tar.gz
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE.txt
|
21
package/uftp/uftp.mk
Normal file
21
package/uftp/uftp.mk
Normal file
@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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))
|
Loading…
Reference in New Issue
Block a user