47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=glorytun
|
|
PKG_VERSION:=8a72f6eec025e67aea9adf25930a8a3ea3bb65e0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://git.miegl.cz/miegl/glorytun.git
|
|
PKG_SOURCE_DATE:=2020-06-09
|
|
PKG_SOURCE_VERSION:=8a72f6eec025e67aea9adf25930a8a3ea3bb65e0
|
|
PKG_HASH:=skip
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/glorytun
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+kmod-tun +libsodium +librt
|
|
TITLE:=Glorytun
|
|
URL:=https://github.com/angt/glorytun
|
|
SUBMENU:=VPN
|
|
endef
|
|
|
|
define Package/glorytun/description
|
|
Glorytun is a vpn designed to improve your internet connectivity:
|
|
- Fast and highly secure.
|
|
- Multipath and active failover.
|
|
- Traffic shaping.
|
|
- Path MTU discovery without ICMP.
|
|
endef
|
|
|
|
define Package/glorytun/conffiles
|
|
/etc/config/glorytun
|
|
endef
|
|
|
|
define Package/glorytun/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/glorytun $(1)/usr/sbin
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) init $(1)/etc/init.d/glorytun
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
touch $(1)/etc/config/glorytun
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,glorytun))
|