Removed unnecessary dependency on luci-app-secubox which was causing file conflicts during installation. The admin package doesn't actually use any modules from luci-app-secubox - it only uses its own secubox-admin.* modules. This fixes the installation error: "Package luci-app-secubox wants to install file /etc/config/secubox But that file is already provided by package secubox-core" Changes: - Makefile: Removed +luci-app-secubox from LUCI_DEPENDS - Package now only depends on: +luci-base +rpcd +secubox-core - Incremented PKG_RELEASE: 7 → 8 - Updated DEPLOY_UPDATES.md with v1.0.0-8 details 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
19 lines
506 B
Makefile
19 lines
506 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-secubox-admin
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=8
|
|
PKG_LICENSE:=MIT
|
|
PKG_MAINTAINER:=CyberMind <contact@cybermind.fr>
|
|
|
|
LUCI_TITLE:=LuCI SecuBox Admin Control Center
|
|
LUCI_DEPENDS:=+luci-base +rpcd +secubox-core
|
|
LUCI_DESCRIPTION:=Unified admin control center for SecuBox appstore plugins with system monitoring
|
|
LUCI_PKGARCH:=all
|
|
|
|
# This is free software, licensed under the MIT License
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot
|