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>
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-dns-provider
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=1
|
|
PKG_ARCH:=all
|
|
PKG_MAINTAINER:=CyberMind Studio <contact@cybermind.fr>
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-dns-provider
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
PKGARCH:=all
|
|
SUBMENU:=SecuBox Apps
|
|
TITLE:=SecuBox DNS Provider API integration
|
|
DEPENDS:=+curl +openssl-util
|
|
endef
|
|
|
|
define Package/secubox-app-dns-provider/description
|
|
Programmatic DNS record management via provider APIs (OVH, Gandi,
|
|
Cloudflare). Provides the dnsctl CLI for record CRUD, zone sync,
|
|
DNS propagation verification, and ACME DNS-01 challenge support.
|
|
endef
|
|
|
|
define Package/secubox-app-dns-provider/conffiles
|
|
/etc/config/dns-provider
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/secubox-app-dns-provider/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/dns-provider $(1)/etc/config/dns-provider
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/dnsctl $(1)/usr/sbin/dnsctl
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/secubox/dns
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/dns/ovh.sh $(1)/usr/lib/secubox/dns/
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/dns/gandi.sh $(1)/usr/lib/secubox/dns/
|
|
$(INSTALL_DATA) ./files/usr/lib/secubox/dns/cloudflare.sh $(1)/usr/lib/secubox/dns/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-dns-provider))
|