lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Makefile (853B)


      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 
      8 include $(TOPDIR)/rules.mk
      9 
     10 PKG_NAME:=vpnc-scripts
     11 PKG_VERSION:=20151220
     12 PKG_RELEASE:=1
     13 
     14 include $(INCLUDE_DIR)/package.mk
     15 
     16 define Package/vpnc-scripts
     17   SECTION:=net
     18   CATEGORY:=Network
     19   TITLE:=VPN configuration script for vpnc and OpenConnect
     20   MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
     21   SUBMENU:=VPN
     22 endef
     23 
     24 define Package/vpnc-scripts/description
     25 	This package contains the vpnc-script which is used by vpnc
     26 	and OpenConnect to configure the tunnel interface.
     27 endef
     28 
     29 define Build/Compile
     30 endef
     31 
     32 define Package/vpnc-scripts/install
     33 	$(INSTALL_DIR) $(1)/lib/netifd
     34 	$(INSTALL_BIN) ./files/vpnc-script $(1)/lib/netifd/
     35 endef
     36 
     37 $(eval $(call BuildPackage,vpnc-scripts))