Version updates: - luci-app-bandwidth-manager: 0.4.0 → 0.5.0 - luci-app-crowdsec-dashboard: 0.6.0 → 0.7.0 - luci-app-media-flow: 0.5.2 → 0.6.0 - luci-app-ndpid: 1.0.0 → 1.1.0 - luci-app-secubox-netifyd: 1.1.0 → 1.2.0 - secubox-core: 0.9.0 → 0.10.0 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
849 B
Makefile
36 lines
849 B
Makefile
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (C) 2025 CyberMind.fr
|
|
#
|
|
# LuCI nDPId Dashboard - Deep Packet Inspection Interface
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-ndpid
|
|
PKG_VERSION:=1.1.0
|
|
PKG_RELEASE:=1
|
|
PKG_ARCH:=all
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_MAINTAINER:=CyberMind <contact@cybermind.fr>
|
|
|
|
LUCI_TITLE:=LuCI nDPId Dashboard
|
|
LUCI_DESCRIPTION:=Modern dashboard for nDPId deep packet inspection on OpenWrt
|
|
LUCI_DEPENDS:=+luci-base +luci-app-secubox +ndpid +socat +jq
|
|
|
|
LUCI_PKGARCH:=all
|
|
|
|
# File permissions
|
|
PKG_FILE_MODES:=/usr/libexec/rpcd/luci.ndpid:root:root:755 \
|
|
/usr/bin/ndpid-compat:root:root:755 \
|
|
/usr/bin/ndpid-flow-actions:root:root:755 \
|
|
/usr/bin/ndpid-collector:root:root:755
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/ndpid
|
|
endef
|
|
|
|
# call BuildPackage - OpenWrt buildroot
|