cc8c12345c
ddrescue is not an autotools package. Convert to generic package to make it build correctly for target architecture. Cc: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
36 lines
918 B
Makefile
36 lines
918 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 = GPLv2+
|
|
DDRESCUE_LICENSE_FILES = COPYING
|
|
DDRESCUE_DEPENDENCIES = host-lzip
|
|
|
|
define DDRESCUE_EXTRACT_CMDS
|
|
$(HOST_DIR)/usr/bin/lzip -d -c $(DL_DIR)/$(DDRESCUE_SOURCE) | \
|
|
tar --strip-components=1 -C $(@D) $(TAR_OPTIONS) -
|
|
endef
|
|
|
|
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))
|