Major achievements: - Successfully built CrowdSec 1.7.4-r2 (81MB) for aarch64_cortex-a72 - Netifyd 5.2.1-r1 confirmed working with all fixes - Both packages built with OpenWrt 24.10.5 buildroot CrowdSec Build: - Full Go 1.23 compatibility with vendored modules - Staged all required golang.org/x/* dependencies - Fixed go.mod directives for OpenWrt toolchain - Includes crowdsec engine + crowdsec-cli (cscli) - Complete configuration files and init scripts Netifyd Status: - 5.2.1 package with GCC 13.3/C++17 fixes operational - LuCI dashboard v1.0.2 with working metrics - Native status.json integration confirmed Build System Updates: - Enhanced local-build.sh for OpenWrt-only packages - Improved package sync and build workflow - Updated Makefiles for consistency 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-zigbee2mqtt
|
|
PKG_RELEASE:=3
|
|
PKG_VERSION:=1.0.0
|
|
PKG_ARCH:=all
|
|
PKG_MAINTAINER:=CyberMind Studio <contact@cybermind.fr>
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-zigbee2mqtt
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
PKGARCH:=all
|
|
SUBMENU:=SecuBox Apps
|
|
TITLE:=SecuBox Zigbee2MQTT docker app
|
|
DEPENDS:=+uci +libuci +kmod-usb-acm +dockerd +docker +containerd
|
|
endef
|
|
|
|
define Package/secubox-app-zigbee2mqtt/description
|
|
Installer, configuration, and service manager for running Zigbee2MQTT
|
|
inside Docker on SecuBox-powered OpenWrt systems.
|
|
endef
|
|
|
|
define Package/secubox-app-zigbee2mqtt/conffiles
|
|
/etc/config/zigbee2mqtt
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/secubox-app-zigbee2mqtt/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/zigbee2mqtt $(1)/etc/config/zigbee2mqtt
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/etc/init.d/zigbee2mqtt $(1)/etc/init.d/zigbee2mqtt
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/zigbee2mqttctl $(1)/usr/sbin/zigbee2mqttctl
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-zigbee2mqtt))
|