treewide: Add extra CPE identifier
[openwrt/openwrt.git] / package / network / config / vxlan / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=vxlan
4 PKG_RELEASE:=3
5 PKG_LICENSE:=GPL-2.0
6
7 include $(INCLUDE_DIR)/package.mk
8
9 define Package/vxlan
10 SECTION:=net
11 CATEGORY:=Network
12 MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net>
13 TITLE:=Virtual eXtensible LAN config support
14 DEPENDS:=+kmod-vxlan
15 PKGARCH:=all
16 endef
17
18 define Package/vxlan/description
19 Virtual eXtensible LAN config support in /etc/config/network.
20 endef
21
22 define Build/Compile
23 endef
24
25 define Build/Configure
26 endef
27
28 define Package/vxlan/install
29 $(INSTALL_DIR) $(1)/lib/netifd/proto
30 $(INSTALL_BIN) ./files/vxlan.sh $(1)/lib/netifd/proto/vxlan.sh
31 endef
32
33 $(eval $(call BuildPackage,vxlan))