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