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>
30 lines
732 B
Makefile
30 lines
732 B
Makefile
################################################################################
|
|
#
|
|
# ddrescue
|
|
#
|
|
################################################################################
|
|
|
|
DDRESCUE_VERSION = 1.22
|
|
DDRESCUE_SOURCE = ddrescue-$(DDRESCUE_VERSION).tar.lz
|
|
DDRESCUE_SITE = http://download.savannah.gnu.org/releases/ddrescue
|
|
DDRESCUE_LICENSE = GPL-2.0+
|
|
DDRESCUE_LICENSE_FILES = COPYING
|
|
|
|
define DDRESCUE_CONFIGURE_CMDS
|
|
(cd $(@D); \
|
|
$(TARGET_MAKE_ENV) ./configure \
|
|
--prefix=/usr \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
)
|
|
endef
|
|
|
|
define DDRESCUE_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define DDRESCUE_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|