9758b8a203
Switched to latest version on GitHub as linuxco.de is no longer active. The appropriate entry for tcping on release-monitoring.org has been updated and a new mapping has been added for the Buildroot project. Signed-off-by: Mark Corbin <mark@dibsco.co.uk> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
22 lines
598 B
Makefile
22 lines
598 B
Makefile
################################################################################
|
|
#
|
|
# tcping
|
|
#
|
|
################################################################################
|
|
|
|
TCPING_VERSION = 1.3.6
|
|
TCPING_SITE = $(call github,mkirchner,tcping,$(TCPING_VERSION))
|
|
TCPING_LICENSE = MIT
|
|
TCPING_LICENSE_FILES = LICENSE
|
|
|
|
define TCPING_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CCFLAGS="$(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
|
|
-C $(@D) tcping.linux
|
|
endef
|
|
|
|
define TCPING_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/tcping $(TARGET_DIR)/usr/bin/tcping
|
|
endef
|
|
|
|
$(eval $(generic-package))
|