OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #
2 # Copyright (C) 2014-2015 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:=map
11 PKG_VERSION:=4
3 office 12 PKG_RELEASE:=11
1 office 13 PKG_LICENSE:=GPL-2.0
14  
15 include $(INCLUDE_DIR)/package.mk
16 include $(INCLUDE_DIR)/cmake.mk
17  
18 define Package/map
19 SECTION:=net
20 CATEGORY:=Network
3 office 21 DEPENDS:=@IPV6 +kmod-ip6-tunnel +libubox +libubus +iptables-mod-conntrack-extra
22 TITLE:=MAP-E and Lightweight 4over6 configuration support
1 office 23 MAINTAINER:=Hans Dedecker <dedeckeh@gmail.com>
24 endef
25  
26 define Package/map/description
3 office 27 Provides support for MAP-E (draft-ietf-softwire-map) and
28 Lightweight 4over6 (draft-ietf-softwire-lw4over6) in /etc/config/network.
29 Refer to http://wiki.openwrt.org/doc/uci/network for
30 configuration details.
1 office 31 endef
32  
33 define Package/map/install
34 $(INSTALL_DIR) $(1)/lib/netifd/proto
35 $(INSTALL_BIN) ./files/map.sh $(1)/lib/netifd/proto/map.sh
36 $(INSTALL_DIR) $(1)/usr/sbin
37 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mapcalc $(1)/usr/sbin/
38 endef
39  
40 $(eval $(call BuildPackage,map))