From 39f7af961aa422c87ccd24be60f3882bb0d9707b Mon Sep 17 00:00:00 2001 From: Martin Banky Date: Sun, 12 Dec 2010 22:53:55 +0100 Subject: memtester: convert to gentargets and bump to 4.2.1 Also, memtester requires largefile support [ Thomas: add patch to fix memtester's Makefile at installation stage. Bump to 4.2.1. ] Signed-off-by: Martin Banky Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/memtester/memtester.mk | 54 ++++++++++++++---------------------------- 1 file changed, 18 insertions(+), 36 deletions(-) (limited to 'package/memtester/memtester.mk') diff --git a/package/memtester/memtester.mk b/package/memtester/memtester.mk index ed8470bb6..a92c5d2b1 100644 --- a/package/memtester/memtester.mk +++ b/package/memtester/memtester.mk @@ -3,45 +3,27 @@ # memtester # ############################################################# -MEMTESTER_VERSION:=4.0.6 -MEMTESTER_SOURCE:=memtester-$(MEMTESTER_VERSION).tar.gz -MEMTESTER_SITE:=http://pyropus.ca/software/memtester/old-versions/ -MEMTESTER_DIR:=$(BUILD_DIR)/memtester-$(MEMTESTER_VERSION) -MEMTESTER_BINARY:=memtester -MEMTESTER_TARGET_BINARY:=usr/bin/memtester +MEMTESTER_VERSION = 4.2.1 +MEMTESTER_SOURCE = memtester-$(MEMTESTER_VERSION).tar.gz +MEMTESTER_SITE = http://pyropus.ca/software/memtester/old-versions/ -$(DL_DIR)/$(MEMTESTER_SOURCE): - $(call DOWNLOAD,$(MEMTESTER_SITE),$(MEMTESTER_SOURCE)) +MEMTESTER_TARGET_INSTALL_OPTS = INSTALLPATH=$(TARGET_DIR)/usr -memtester-source: $(DL_DIR)/$(MEMTESTER_SOURCE) +define MEMTESTER_BUILD_CMDS + $(SED) "s,cc,$(TARGET_CC)," $(@D)/conf-* + $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) +endef -$(MEMTESTER_DIR)/.unpacked: $(DL_DIR)/$(MEMTESTER_SOURCE) - $(ZCAT) $(DL_DIR)/$(MEMTESTER_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - - #toolchain/patch-kernel.sh $(MEMTESTER_DIR) package/memtester/ memtester\*.patch - $(SED) "s,cc,$(TARGET_CC)," $(MEMTESTER_DIR)/conf-* - touch $(MEMTESTER_DIR)/.unpacked +define MEMTESTER_INSTALL_TARGET_CMDS + $(MAKE) $(MEMTESTER_TARGET_INSTALL_OPTS) -C $(@D) install +endef -$(MEMTESTER_DIR)/$(MEMTESTER_BINARY): $(MEMTESTER_DIR)/.unpacked - $(MAKE) -C $(MEMTESTER_DIR) - $(STRIPCMD) $(MEMTESTER_DIR)/$(MEMTESTER_BINARY) +define MEMTESTER_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/bin/memtester +endef -$(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY): $(MEMTESTER_DIR)/$(MEMTESTER_BINARY) - $(INSTALL) -m 0755 -D $(MEMTESTER_DIR)/$(MEMTESTER_BINARY) $(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY) +define MEMTESTER_CLEAN_CMDS + -$(MAKE) -C $(@D) clean +endef -memtester: $(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY) - -memtester-clean: - rm -f $(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY) - -$(MAKE) -C $(MEMTESTER_DIR) clean - -memtester-dirclean: - rm -rf $(MEMTESTER_DIR) - -############################################################# -# -# Toplevel Makefile options -# -############################################################# -ifeq ($(BR2_PACKAGE_MEMTESTER),y) -TARGETS+=memtester -endif +$(eval $(call GENTARGETS,package,memtester)) -- cgit v1.2.3