Merge pull request #24370 from osedlbauer/pr/20240611-modemmanager-force-connection
[feed/packages.git] / net / static-neighbor-reports / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=static-neighbor-reports
4 PKG_VERSION:=1
5 PKG_RELEASE:=2
6
7 PKG_MAINTAINER:=David Bauer <mail@david-bauer.net>
8 PKG_LICENSE:=GPL-2.0-only
9
10 include $(INCLUDE_DIR)/package.mk
11
12 Build/Compile=
13
14 define Package/static-neighbor-reports/Default
15 endef
16
17 define Package/static-neighbor-reports
18 SECTION:=net
19 CATEGORY:=Network
20 TITLE:=Configure static 802.11k neighbor reports
21 PKGARCH:=all
22 DEPENDS:=+libuci-lua +libubus-lua +lua
23 endef
24
25 define Package/static-neighbor-reports/install
26 $(INSTALL_DIR) $(1)/etc/config
27 $(INSTALL_CONF) ./files/static-neighbor-report.conf $(1)/etc/config/static-neighbor-report
28 $(INSTALL_DIR) $(1)/etc/init.d
29 $(INSTALL_BIN) ./files/static-neighbor-reports.init $(1)/etc/init.d/static-neighbor-reports
30 $(INSTALL_DIR) $(1)/usr/lib
31 $(INSTALL_BIN) ./files/reload-neighbor-reports.lua $(1)/usr/lib/reload-neighbor-reports.lua
32 endef
33
34 define Package/static-neighbor-reports/conffiles
35 /etc/config/static-neighbor-report
36 endef
37
38 define Package/static-neighbor-reports/description
39 Allows to configure static neighbor reports for hostapd interfaces.
40
41 These neighbor reports are avilable to clients using IEEE 802.11k.
42 endef
43
44 $(eval $(call BuildPackage,static-neighbor-reports))