dd6893adad
The upstream site is no longer available from http://www.linuxco.de, but only from http://linuxco.de. Fixes: http://autobuild.buildroot.net/results/03caf8403c31e2424c338de4df636dd900408b14/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
576 B
Makefile
22 lines
576 B
Makefile
################################################################################
|
|
#
|
|
# tcping
|
|
#
|
|
################################################################################
|
|
|
|
TCPING_VERSION = 1.3.5
|
|
TCPING_SITE = http://linuxco.de/tcping
|
|
TCPING_LICENSE = GPLv3+
|
|
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))
|