diff options
author | Adrien Gallouët <adrien@gallouet.fr> | 2017-12-05 16:22:59 +0000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-08 17:54:51 +0100 |
commit | d3f11ec76430d835ec39a5ea1463c080e33cf93f (patch) | |
tree | c7cca515073568397bd51fc7407701319aa6bd3d | |
parent | 86e46797cad96ba4f9b37406dd0a343f6941de4f (diff) | |
download | buildroot-d3f11ec76430d835ec39a5ea1463c080e33cf93f.tar.gz buildroot-d3f11ec76430d835ec39a5ea1463c080e33cf93f.zip |
glorytun: new package
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
[Thomas: add entry to DEVELOPERS file, add missing dependency on
host-pkgconf.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | DEVELOPERS | 3 | ||||
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/glorytun/Config.in | 7 | ||||
-rw-r--r-- | package/glorytun/glorytun.hash | 2 | ||||
-rw-r--r-- | package/glorytun/glorytun.mk | 13 |
5 files changed, 26 insertions, 0 deletions
diff --git a/DEVELOPERS b/DEVELOPERS index 2782627fd0..c81808fa6d 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -60,6 +60,9 @@ N: Adrian Perez de Castro <aperez@igalia.com> F: package/libepoxy/ F: package/webkitgtk/ +N: Adrien Gallouët <adrien@gallouet.fr> +F: package/glorytun/ + N: Aleksander Morgado <aleksander@aleksander.es> F: package/libmbim/ F: package/libqmi/ diff --git a/package/Config.in b/package/Config.in index 74e47f27ce..cb2141b8f3 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1654,6 +1654,7 @@ menu "Networking applications" source "package/freeswitch/Config.in" source "package/freeswitch-mod-bcg729/Config.in" source "package/gesftpserver/Config.in" + source "package/glorytun/Config.in" source "package/gupnp-tools/Config.in" source "package/gutenprint/Config.in" source "package/hans/Config.in" diff --git a/package/glorytun/Config.in b/package/glorytun/Config.in new file mode 100644 index 0000000000..82d248f75a --- /dev/null +++ b/package/glorytun/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_GLORYTUN + bool "glorytun" + select BR2_PACKAGE_LIBSODIUM + help + A small, simple and secure VPN. + + https://github.com/angt/glorytun diff --git a/package/glorytun/glorytun.hash b/package/glorytun/glorytun.hash new file mode 100644 index 0000000000..891af2079e --- /dev/null +++ b/package/glorytun/glorytun.hash @@ -0,0 +1,2 @@ +sha256 76849b1568119cf0834749db56d4882966863d31351c21c1b22f373f0c97a498 glorytun-0.0.93-mud.tar.gz +sha256 bd418f8ef7d62f2c89e3aa1e5dc41c7d7a6212eb1cdb4d39a26a5bd333e1b4a3 LICENSE diff --git a/package/glorytun/glorytun.mk b/package/glorytun/glorytun.mk new file mode 100644 index 0000000000..233e1feaa9 --- /dev/null +++ b/package/glorytun/glorytun.mk @@ -0,0 +1,13 @@ +################################################################################ +# +# glorytun +# +################################################################################ + +GLORYTUN_VERSION = 0.0.93-mud +GLORYTUN_SITE = https://github.com/angt/glorytun/releases/download/v$(GLORYTUN_VERSION) +GLORYTUN_DEPENDENCIES = libsodium host-pkgconf +GLORYTUN_LICENSE = BSD-2-clause +GLORYTUN_LICENSE_FILES = LICENSE + +$(eval $(autotools-package)) |