af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
687 B
Makefile
24 lines
687 B
Makefile
################################################################################
|
|
#
|
|
# memtester
|
|
#
|
|
################################################################################
|
|
|
|
MEMTESTER_VERSION = 4.3.0
|
|
MEMTESTER_SITE = http://pyropus.ca/software/memtester/old-versions
|
|
MEMTESTER_LICENSE = GPL-2.0
|
|
MEMTESTER_LICENSE_FILES = COPYING
|
|
|
|
MEMTESTER_TARGET_INSTALL_OPTS = INSTALLPATH=$(TARGET_DIR)/usr
|
|
|
|
define MEMTESTER_BUILD_CMDS
|
|
$(SED) "s,^cc,$(TARGET_CC)," $(@D)/conf-*
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define MEMTESTER_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(MEMTESTER_TARGET_INSTALL_OPTS) -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|