You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
853 B

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=vpnc-scripts
  9. PKG_VERSION:=20151220
  10. PKG_RELEASE:=1
  11. include $(INCLUDE_DIR)/package.mk
  12. define Package/vpnc-scripts
  13. SECTION:=net
  14. CATEGORY:=Network
  15. TITLE:=VPN configuration script for vpnc and OpenConnect
  16. MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
  17. SUBMENU:=VPN
  18. endef
  19. define Package/vpnc-scripts/description
  20. This package contains the vpnc-script which is used by vpnc
  21. and OpenConnect to configure the tunnel interface.
  22. endef
  23. define Build/Compile
  24. endef
  25. define Package/vpnc-scripts/install
  26. $(INSTALL_DIR) $(1)/lib/netifd
  27. $(INSTALL_BIN) ./files/vpnc-script $(1)/lib/netifd/
  28. endef
  29. $(eval $(call BuildPackage,vpnc-scripts))