package/network: add PKGARCH:=all to non-binary packages
[openwrt/staging/chunkeey.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:=3
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 PKGARCH:=all
24 endef
25
26 define Package/ipip/description
27 IP in IP Tunnel config support in /etc/config/network.
28 endef
29
30 define Build/Compile
31 endef
32
33 define Build/Configure
34 endef
35
36 define Package/ipip/install
37 $(INSTALL_DIR) $(1)/lib/netifd/proto
38 $(INSTALL_BIN) ./files/ipip.sh $(1)/lib/netifd/proto/ipip.sh
39 endef
40
41 $(eval $(call BuildPackage,ipip))