mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
* update netifd * update hostapd * update mt76 * update maverick * add dynamic vlan * update ucentral-client * update ucentral-schema * update ucode * update 5.10 patches * fix realtek Signed-off-by: John Crispin <john@phrozen.org>
37 lines
934 B
Makefile
37 lines
934 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucentral-client
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL=https://github.com/blogic/ucentral-client.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2021-02-15
|
|
PKG_SOURCE_VERSION:=d2d2e9511e4624307967e097e6cee5ad7d922b55
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/ucentral-client
|
|
SECTION:=ucentral
|
|
CATEGORY:=uCentral
|
|
TITLE:=OpenWrt uCentral websocket client
|
|
DEPENDS:=+ucode +ucode-mod-fs +ucode-mod-ubus +ucode-mod-uci +ucode-mod-math \
|
|
+libubox +libwebsockets-openssl +libblobmsg-json +libubus
|
|
endef
|
|
|
|
define Package/ucentral-client/conffiles
|
|
/etc/ucentral/
|
|
/etc/config-shadow/
|
|
endef
|
|
|
|
define Package/ucentral-client/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ucentral $(1)/usr/sbin/
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ucentral-client))
|