5c74d6b5ced06c9f444efcd10147025e68a92c78
[feed/packages.git] / net / bonding / Makefile
1 #
2 # Copyright (C) 2018 TDT AG <development@tdt.de>
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See https://www.gnu.org/licenses/gpl-2.0.txt for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=proto-bonding
11 PKG_VERSION:=2020-03-30
12 PKG_RELEASE:=1
13
14 PKG_LICENSE:=GPL-2.0
15 PKG_LICENSE_FILES:=
16
17 PKG_MAINTAINER:=Helge Mader <ma@dev.tdt.de>
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/proto-bonding
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=Link Aggregation (Channel Bonding) proto handler
25 DEPENDS:=+kmod-bonding
26 PKGARCH:=all
27 endef
28
29 define Package/proto-bonding/description
30 This package contains the channel bonding proto handler for netifd
31 endef
32
33 define Build/Compile
34 endef
35
36 define Package/proto-bonding/install
37 $(INSTALL_DIR) $(1)/lib/netifd/proto/
38 $(INSTALL_BIN) ./files/lib/netifd/proto/bonding.sh \
39 $(1)/lib/netifd/proto/
40 endef
41
42 $(eval $(call BuildPackage,proto-bonding))