mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-30 08:53:29 +08:00
ded7184a58
Remove patch that was merged upstream. Changelog: https://github.com/raboof/nethogs/releases/tag/v0.8.8 Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
590 B
Makefile
22 lines
590 B
Makefile
################################################################################
|
|
#
|
|
# nethogs
|
|
#
|
|
################################################################################
|
|
|
|
NETHOGS_VERSION = 0.8.8
|
|
NETHOGS_SITE = $(call github,raboof,nethogs,v$(NETHOGS_VERSION))
|
|
NETHOGS_LICENSE = GPL-2.0+
|
|
NETHOGS_LICENSE_FILES = COPYING
|
|
NETHOGS_DEPENDENCIES = libpcap ncurses
|
|
|
|
define NETHOGS_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) nethogs
|
|
endef
|
|
|
|
define NETHOGS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/src/nethogs $(TARGET_DIR)/usr/sbin/nethogs
|
|
endef
|
|
|
|
$(eval $(generic-package))
|