[Buildroot] [git commit] package/uftp: new package

Thomas Petazzoni thomas.petazzoni at bootlin.com
Sun Mar 17 10:37:55 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=98d679f49d9ea93c8af1e8a81adfd5a1adf67ed7
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Encrypted UDP based FTP with multicast.

Signed-off-by: Asaf Kahlon <asafka7 at gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 DEVELOPERS             |  1 +
 package/Config.in      |  1 +
 package/uftp/Config.in |  7 +++++++
 package/uftp/uftp.hash |  3 +++
 package/uftp/uftp.mk   | 21 +++++++++++++++++++++
 5 files changed, 33 insertions(+)

diff --git a/DEVELOPERS b/DEVELOPERS
index cc4044ff2c..a188b075fe 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -219,6 +219,7 @@ F:	package/stress/
 N:	Asaf Kahlon <asafka7 at gmail.com>
 F:	package/libuv/
 F:	package/python*
+F:	package/uftp/
 F:	package/zeromq/
 
 N:	Ash Charles <ash.charles at savoirfairelinux.com>
diff --git a/package/Config.in b/package/Config.in
index 30391cfc89..bc855060c9 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -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"
diff --git a/package/uftp/Config.in b/package/uftp/Config.in
new file mode 100644
index 0000000000..b6a8961628
--- /dev/null
+++ b/package/uftp/Config.in
@@ -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/
diff --git a/package/uftp/uftp.hash b/package/uftp/uftp.hash
new file mode 100644
index 0000000000..57016f2081
--- /dev/null
+++ b/package/uftp/uftp.hash
@@ -0,0 +1,3 @@
+# Locally computed sha256
+sha256	c04bc75a88fc3d57504269f260be4d0b1bc440508b5a5ca587df6c16b771aa48	uftp-4.9.9.tar.gz
+sha256	8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903	LICENSE.txt
diff --git a/package/uftp/uftp.mk b/package/uftp/uftp.mk
new file mode 100644
index 0000000000..bbc362652b
--- /dev/null
+++ b/package/uftp/uftp.mk
@@ -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))


More information about the buildroot mailing list