ds-lite: make tunnel encapsulation limit support configurable (FS#1501)
[openwrt/openwrt.git] / package / network / ipv6 / ds-lite / Makefile
1 #
2 # Copyright (C) 2013 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:=ds-lite
11 PKG_VERSION:=7
12 PKG_RELEASE:=3
13 PKG_LICENSE:=GPL-2.0
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/ds-lite
18 SECTION:=net
19 CATEGORY:=Network
20 DEPENDS:=@IPV6 +kmod-ip6-tunnel +resolveip
21 TITLE:=Dual-Stack Lite (DS-Lite) configuration support
22 MAINTAINER:=Steven Barth <steven@midlink.org>
23 PKGARCH:=all
24 endef
25
26 define Package/ds-lite/description
27 Provides support for Dual-Stack Lite in /etc/config/network.
28 Refer to http://wiki.openwrt.org/doc/uci/network for
29 configuration details.
30 endef
31
32 define Build/Compile
33 endef
34
35 define Build/Configure
36 endef
37
38 define Package/ds-lite/install
39 $(INSTALL_DIR) $(1)/lib/netifd/proto
40 $(INSTALL_BIN) ./files/dslite.sh $(1)/lib/netifd/proto/dslite.sh
41 endef
42
43 $(eval $(call BuildPackage,ds-lite))