ecbcf6b3989836c5f1269f270a49aa7669fb540a
[openwrt/svn-archive/archive.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:=1
12 PKG_RELEASE:=1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/ds-lite
17 SECTION:=ipv6
18 CATEGORY:=IPv6
19 DEPENDS:=+kmod-ipv6 +kmod-ip6-tunnel
20 TITLE:=Dual-Stack Lite (DS-Lite) configuration support
21 MAINTAINER:=Steven Barth <steven@midlink.org>
22 PKGARCH:=all
23 endef
24
25 define Package/ds-lite/description
26 Provides support for Dual-Stack Lite in /etc/config/network.
27 Refer to http://wiki.openwrt.org/doc/uci/network for
28 configuration details.
29 endef
30
31 define Build/Compile
32 endef
33
34 define Build/Configure
35 endef
36
37 define Package/ds-lite/install
38 $(INSTALL_DIR) $(1)/lib/netifd/proto
39 $(INSTALL_BIN) ./files/dslite.sh $(1)/lib/netifd/proto/dslite.sh
40 endef
41
42 $(eval $(call BuildPackage,ds-lite))