mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-01 13:49:03 +03:00
Securely transfer data between computers. This package provides a library and a command-line tool named "wormhole", which makes it possible to get arbitrary-sized files and directories (or short pieces of text) from one computer to another. The two endpoints are identified by using identical "wormhole codes": in general, the sending machine generates and displays the code, which must then be typed into the receiving machine. https://github.com/magic-wormhole/magic-wormhole Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
607 B
Makefile
15 lines
607 B
Makefile
################################################################################
|
|
#
|
|
# python-magic-wormhole
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_MAGIC_WORMHOLE_VERSION = 0.12.0
|
|
PYTHON_MAGIC_WORMHOLE_SOURCE = magic-wormhole-$(PYTHON_MAGIC_WORMHOLE_VERSION).tar.gz
|
|
PYTHON_MAGIC_WORMHOLE_SITE = https://files.pythonhosted.org/packages/d4/62/5e4a86f7c4b111e016577f1b304063ebe604f430db15465ac58b13993608
|
|
PYTHON_MAGIC_WORMHOLE_SETUP_TYPE = setuptools
|
|
PYTHON_MAGIC_WORMHOLE_LICENSE = MIT
|
|
PYTHON_MAGIC_WORMHOLE_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|