OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #
2 # Copyright (C) 2014 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:=ipip
11 PKG_VERSION:=1
3 office 12 PKG_RELEASE:=2
1 office 13 PKG_LICENSE:=GPL-2.0
14  
15 include $(INCLUDE_DIR)/package.mk
16  
17 define Package/ipip
18 SECTION:=net
19 CATEGORY:=Network
20 MAINTAINER:=Hans Dedecker <dedeckeh@gmail.com>
21 TITLE:=IP in IP Tunnel config support
22 DEPENDS:= +kmod-ipip +resolveip
23 endef
24  
25 define Package/ipip/description
26 IP in IP Tunnel config support in /etc/config/network.
27 endef
28  
29 define Build/Compile
30 endef
31  
32 define Build/Configure
33 endef
34  
35 define Package/ipip/install
36 $(INSTALL_DIR) $(1)/lib/netifd/proto
37 $(INSTALL_BIN) ./files/ipip.sh $(1)/lib/netifd/proto/ipip.sh
38 endef
39  
40 $(eval $(call BuildPackage,ipip))