mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 01:22:13 +00:00
0e1f5957d8
- Update package URLs - Remove rvnamed-ng target since it was merged into iptraf-ng Signed-off-by: krant <aleksey.vasilenko@gmail.com>
64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=iptraf-ng
|
|
PKG_VERSION:=1.2.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=v$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://src.fedoraproject.org/repo/pkgs/iptraf-ng/v$(PKG_VERSION).tar.gz/sha512/44d36fc92cdbf379f62cb63638663c3ee610225b9c28d60ee55e62e358f398a6b0db281129327b3472e45fb553ee3dd605af09c129f2233f8839ae3dbd799384
|
|
PKG_HASH:=9f5cef584065420dea1ba32c86126aede1fa9bd25b0f8362b0f9fd9754f00870
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_MAINTAINER:=
|
|
|
|
PKG_CHECK_FORMAT_SECURITY:=0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/iptraf-ng
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libncurses
|
|
TITLE:=A console-based network monitoring program
|
|
URL:=https://github.com/iptraf-ng/iptraf-ng
|
|
endef
|
|
|
|
define Package/iptraf-ng/description
|
|
iptraf-ng is a console-based network statistics utility for Linux. It gathers a
|
|
variety of figures such as TCP connection packet and byte counts, interface
|
|
statistics and activity indicators, TCP/UDP traffic breakdowns, and LAN
|
|
station packet and byte counts.
|
|
endef
|
|
|
|
define Package/iptraf-ng/postinst
|
|
#!/bin/sh
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
mkdir -p $${IPKG_INSTROOT}/var/log/iptraf-ng \
|
|
$${IPKG_INSTROOT}/var/run/iptraf-ng \
|
|
$${IPKG_INSTROOT}/var/lib/iptraf-ng
|
|
fi
|
|
endef
|
|
|
|
MAKE_FLAGS += \
|
|
CFLAGS="$(TARGET_CFLAGS) -std=gnu99" \
|
|
CPPFLAGS="$(TARGET_CPPFLAGS) -D_GNU_SOURCE" \
|
|
NCURSES_CFLAGS="$(TARGET_CFLAGS)" \
|
|
NCURSES_LDFLAGS="$(TARGET_LDFLAGS) -lncurses -lpanel" \
|
|
iptraf-ng
|
|
|
|
define Package/iptraf-ng/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iptraf-ng $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,iptraf-ng))
|