Add 4 new packages implementing unified device intelligence and DNS provider API management: - secubox-app-dns-provider: dnsctl CLI with OVH, Gandi, Cloudflare adapters for DNS record CRUD, HAProxy vhost sync, propagation verification, and ACME DNS-01 wildcard certificate issuance - luci-app-dns-provider: RPCD handler + LuCI views for provider settings and DNS record management - secubox-app-device-intel: Aggregation layer merging mac-guardian, client-guardian, DHCP, P2P mesh, and exposure data with heuristic classification engine and USB/MQTT/Zigbee emulator modules - luci-app-device-intel: RPCD handler + 5 LuCI views (dashboard, devices, emulators, mesh, settings) with shared API and CSS Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.7 KiB
Makefile
47 lines
1.7 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-device-intel
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=SecuBox Team <contact@secubox.dev>
|
|
PKG_LICENSE:=MIT
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-device-intel
|
|
SECTION:=secubox
|
|
CATEGORY:=SecuBox
|
|
TITLE:=SecuBox Device Intelligence
|
|
DEPENDS:=+jsonfilter +curl
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/secubox-app-device-intel/description
|
|
Unified device inventory aggregating mac-guardian, client-guardian, DHCP,
|
|
P2P mesh, and exposure scanner data. Includes heuristic classification
|
|
and pluggable emulator modules for MQTT, Zigbee, and USB devices.
|
|
endef
|
|
|
|
define Package/secubox-app-device-intel/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/device-intel $(1)/etc/config/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/etc/init.d/device-intel $(1)/etc/init.d/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/device-intelctl $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/secubox/device-intel
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/device-intel/functions.sh $(1)/usr/lib/secubox/device-intel/
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/device-intel/classify.sh $(1)/usr/lib/secubox/device-intel/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/secubox/device-intel/emulators
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/device-intel/emulators/usb.sh $(1)/usr/lib/secubox/device-intel/emulators/
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/device-intel/emulators/mqtt.sh $(1)/usr/lib/secubox/device-intel/emulators/
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/device-intel/emulators/zigbee.sh $(1)/usr/lib/secubox/device-intel/emulators/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-device-intel))
|