mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 03:29:52 +00:00
272f55e87f
With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nlbwmon
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/jow-/nlbwmon.git
|
|
PKG_SOURCE_DATE:=2024-02-21
|
|
PKG_SOURCE_VERSION:=c7616bcfaaef440848152f4dc738c990b2d0b90b
|
|
PKG_MIRROR_HASH:=98758dbd14d230f21887b4da5f4f26ea5cb6ecff38ee70322b8fa28630c4d6bb
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
|
PKG_LICENSE:=ISC
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_OPTIONS += -DLIBNL_LIBRARY_TINY=ON
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/libnl-tiny
|
|
|
|
define Package/nlbwmon
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libubox +libnl-tiny +zlib +kmod-nf-conntrack-netlink
|
|
TITLE:=OpenWrt Traffic Usage Monitor
|
|
endef
|
|
|
|
define Package/nlbwmon/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/nlbwmon $(1)/usr/sbin/nlbwmon
|
|
$(LN) nlbwmon $(1)/usr/sbin/nlbw
|
|
$(INSTALL_DIR) $(1)/usr/share/nlbwmon
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/protocols.txt $(1)/usr/share/nlbwmon/protocols
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/nlbwmon.init $(1)/etc/init.d/nlbwmon
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/nlbwmon.config $(1)/etc/config/nlbwmon
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
|
$(INSTALL_BIN) ./files/nlbwmon.hotplug $(1)/etc/hotplug.d/iface/30-nlbwmon
|
|
endef
|
|
|
|
define Package/nlbwmon/conffiles
|
|
/etc/config/nlbwmon
|
|
/usr/share/nlbwmon/protocols
|
|
endef
|
|
|
|
|
|
$(eval $(call BuildPackage,nlbwmon))
|