blob: 4494e1b81fd2812b2156f23ffc4230ef678178d7 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=ipip
11PKG_RELEASE:=4
12PKG_LICENSE:=GPL-2.0
13
14include $(INCLUDE_DIR)/package.mk
15
16define 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 +resolveip
22 PKGARCH:=all
23endef
24
25define Package/ipip/description
26 IP in IP Tunnel config support in /etc/config/network.
27endef
28
29define Build/Compile
30endef
31
32define Build/Configure
33endef
34
35define Package/ipip/install
36 $(INSTALL_DIR) $(1)/lib/netifd/proto
37 $(INSTALL_BIN) ./files/ipip.sh $(1)/lib/netifd/proto/ipip.sh
38endef
39
40$(eval $(call BuildPackage,ipip))