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.

38 lines
868 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:=2
  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. PKGARCH:=all
  19. endef
  20. define Package/vpnc-scripts/description
  21. This package contains the vpnc-script which is used by vpnc
  22. and OpenConnect to configure the tunnel interface.
  23. endef
  24. define Build/Compile
  25. endef
  26. define Package/vpnc-scripts/install
  27. $(INSTALL_DIR) $(1)/lib/netifd
  28. $(INSTALL_BIN) ./files/vpnc-script $(1)/lib/netifd/
  29. endef
  30. $(eval $(call BuildPackage,vpnc-scripts))