2023-03-02 16:26:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2023-03-31 00:24:19 +08:00
|
|
|
PKG_VERSION:=1.0.3-1
|
2023-03-02 16:26:13 +08:00
|
|
|
PKG_RELEASE:=
|
|
|
|
PKG_MAINTAINER:=jjm2473 <jjm2473@gmail.com>
|
|
|
|
|
|
|
|
LUCI_TITLE:=LuCI realtime client bandwidth monitor
|
|
|
|
LUCI_PKGARCH:=all
|
|
|
|
LUCI_DEPENDS:=+iptables
|
|
|
|
|
2023-03-02 22:48:53 +08:00
|
|
|
define Package/luci-app-rtbwmon/prerm
|
|
|
|
#!/bin/sh
|
|
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
|
|
/usr/libexec/rtbwmon.sh prerm
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
endef
|
|
|
|
|
2023-03-02 16:26:13 +08:00
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|