mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
ttcp: convert to generic-package infrastructure
[Peter: minor fixes] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
76b38f853d
commit
9cb9b7430f
@ -4,47 +4,22 @@
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
TTCP_VERSION:=
|
TTCP_VERSION =
|
||||||
TTCP_SOURCE_URL=http://ftp.sunet.se/pub/network/monitoring/ttcp
|
TTCP_SITE = http://ftp.sunet.se/pub/network/monitoring/ttcp
|
||||||
TTCP_SOURCE=ttcp$(TTCP_VERSION).c
|
TTCP_SOURCE = ttcp.c
|
||||||
TTCP_DIR=$(BUILD_DIR)/ttcp$(TTCP_VERSION)
|
TTCP_LICENSE = public domain
|
||||||
|
|
||||||
$(DL_DIR)/$(TTCP_SOURCE):
|
define TTCP_EXTRACT_CMDS
|
||||||
$(call DOWNLOAD,$(TTCP_SOURCE_URL)/$(TTCP_SOURCE))
|
cp -f -t $(@D) $(DL_DIR)/$(TTCP_SOURCE)
|
||||||
|
endef
|
||||||
|
|
||||||
$(TTCP_DIR)/.unpacked: $(DL_DIR)/$(TTCP_SOURCE)
|
define TTCP_BUILD_CMDS
|
||||||
-mkdir $(TTCP_DIR)
|
$(TARGET_CC) $(TARGET_CPPFLAGS) $(TARGET_CFLAGS) \
|
||||||
cp -af $(DL_DIR)/$(TTCP_SOURCE) $(TTCP_DIR)
|
-o $(@D)/ttcp $(@D)/$(TTCP_SOURCE)
|
||||||
support/scripts/apply-patches.sh $(TTCP_DIR) package/ttcp/ ttcp-\*.patch
|
endef
|
||||||
touch $(TTCP_DIR)/.unpacked
|
|
||||||
|
|
||||||
$(TTCP_DIR)/.configured: $(TTCP_DIR)/.unpacked
|
define TTCP_INSTALL_TARGET_CMDS
|
||||||
touch $(TTCP_DIR)/.configured
|
$(INSTALL) -D -m 0755 $(@D)/ttcp $(TARGET_DIR)/usr/bin/ttcp
|
||||||
|
endef
|
||||||
|
|
||||||
$(TTCP_DIR)/ttcp: $(TTCP_DIR)/.configured
|
$(eval $(generic-package))
|
||||||
$(TARGET_CC) -O2 -o $(TTCP_DIR)/ttcp $(TTCP_DIR)/$(TTCP_SOURCE)
|
|
||||||
|
|
||||||
$(TARGET_DIR)/usr/bin/ttcp: $(TTCP_DIR)/ttcp
|
|
||||||
cp -af $(TTCP_DIR)/ttcp $(TARGET_DIR)/usr/bin/
|
|
||||||
|
|
||||||
ttcp-legal-info:
|
|
||||||
@$(call legal-warning-pkg,ttcp,legal-info not yet implemented)
|
|
||||||
|
|
||||||
ttcp: $(TARGET_DIR)/usr/bin/ttcp
|
|
||||||
|
|
||||||
ttcp-source: $(DL_DIR)/$(TTCP_SOURCE)
|
|
||||||
|
|
||||||
ttcp-clean:
|
|
||||||
rm -f $(TTCP_DIR)/*.o $(TTCP_DIR)/ttcp
|
|
||||||
|
|
||||||
ttcp-dirclean:
|
|
||||||
rm -rf $(TTCP_DIR)
|
|
||||||
|
|
||||||
#############################################################
|
|
||||||
#
|
|
||||||
# Toplevel Makefile options
|
|
||||||
#
|
|
||||||
#############################################################
|
|
||||||
ifeq ($(BR2_PACKAGE_TTCP),y)
|
|
||||||
TARGETS+=ttcp
|
|
||||||
endif
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user