amnezia-vpn / amneziawg-openwrt

AmneziaWG for OpenWrt
38 stars 163 forks source link

amneziawg-tools/Makefile - update definition #12

Open Ser9ei opened 1 month ago

Ser9ei commented 1 month ago

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