IPIP: IP in IP package support
[openwrt/openwrt.git] / package / network / config / ipip / Makefile
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
12 PKG_RELEASE:=1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/ipip
17 SECTION:=net
18 CATEGORY:=Network
19 MAINTAINER:=Hans Dedecker <dedeckeh@gmail.com>
20 TITLE:=IP in IP Tunnel config support
21 DEPENDS:= +kmod-ipip
22 endef
23
24 define Package/ipip/description
25 IP in IP Tunnel config support in /etc/config/network.
26 endef
27
28 define Build/Compile
29 endef
30
31 define Build/Configure
32 endef
33
34 define Package/ipip/install
35 $(INSTALL_DIR) $(1)/lib/netifd/proto
36 $(INSTALL_BIN) ./files/ipip.sh $(1)/lib/netifd/proto/ipip.sh
37 endef
38
39 $(eval $(call BuildPackage,ipip))