mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
This bump includes the security fix for CVE-2024-52949. Fixes: https://www.cve.org/CVERecord?id=CVE-2024-52949. Release notes: https://github.com/iptraf-ng/iptraf-ng/releases/tag/v1.2.2 Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
671 B
Makefile
25 lines
671 B
Makefile
################################################################################
|
|
#
|
|
# iptraf-ng
|
|
#
|
|
################################################################################
|
|
|
|
IPTRAF_NG_VERSION = 1.2.2
|
|
IPTRAF_NG_SITE = $(call github,iptraf-ng,iptraf-ng,v$(IPTRAF_NG_VERSION))
|
|
IPTRAF_NG_LICENSE = GPL-2.0+
|
|
IPTRAF_NG_LICENSE_FILES = LICENSE
|
|
IPTRAF_NG_DEPENDENCIES = ncurses
|
|
|
|
define IPTRAF_NG_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
NCURSES_LDFLAGS="-lpanel -lncurses" \
|
|
-C $(@D)
|
|
endef
|
|
|
|
define IPTRAF_NG_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
prefix=/usr DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|