mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
69829f6 Revert "Cloud Package Manager" c3a3e05 remove certupdate from proto.c 4c4710a add reenroll to proto.c Signed-off-by: John Crispin <john@phrozen.org>
33 lines
986 B
Makefile
33 lines
986 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucentral-client
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL=https://github.com/Telecominfraproject/wlan-ucentral-client.git
|
|
PKG_MIRROR_HASH:=2e28e0aa61b74851c7daf3634ec34d303a603e881e6c5d1fd76c837dea527582
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2025-07-08
|
|
PKG_SOURCE_VERSION:=69829f63ea172ce9bd19b7b02073746fe9cf6a52
|
|
|
|
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 +ucode-mod-resolv +ucode-mod-uloop \
|
|
+libubox +libwebsockets-openssl +libblobmsg-json +libubus
|
|
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))
|