amnezia-vpn/amneziawg-openwrt

amneziawg-tools/Makefile - update definition

Opened this issue · 0 comments

There are two updates of the Makefile from amnezia-tools module:

(1) add SECTION and SUBMENU defenition to the Makefile
(2) add kmod-amneziawg to DEPENDS to the Makefile

Currently:

 define Package/amneziawg-tools
  CATEGORY:=Network
  URL:=https://amnezia.org/
  MAINTAINER:=Amnezia Admin <admin@amnezia.org>
  TITLE:=AmneziaWG userspace control program (amneziawg)
  DEPENDS:= \
	  +@BUSYBOX_CONFIG_IP \
	  +@BUSYBOX_CONFIG_FEATURE_IP_LINK
endef

Should be:

define Package/amneziawg-tools
  SECTION:=net
  CATEGORY:=Network
  SUBMENU:=VPN
  URL:=https://amnezia.org/
  MAINTAINER:=Amnezia Admin <admin@amnezia.org>
  TITLE:=AmneziaWG userspace control program (amneziawg)
  DEPENDS:= \
	  +@BUSYBOX_CONFIG_IP \
	  +@BUSYBOX_CONFIG_FEATURE_IP_LINK \
	  +kmod-amneziawg
endef