18079e20a7
This bump contains only one commit that fix a build failure with asm:
844b8c057c
Fixes:
- http://autobuild.buildroot.org/results/800d8a97966ef75dbf20e85ec8a02766ba02cc76
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
579 B
Makefile
22 lines
579 B
Makefile
################################################################################
|
|
#
|
|
# lrzip
|
|
#
|
|
################################################################################
|
|
|
|
LRZIP_VERSION = 7f3bf46203bf45ea115d8bd9f310ea219be88af4
|
|
LRZIP_SITE = $(call github,ckolivas,lrzip,$(LRZIP_VERSION))
|
|
LRZIP_AUTORECONF = YES
|
|
LRZIP_LICENSE = GPL-2.0+
|
|
LRZIP_LICENSE_FILES = COPYING
|
|
LRZIP_DEPENDENCIES = zlib lzo bzip2
|
|
|
|
ifeq ($(BR2_i386)$(BR2_x86_64),y)
|
|
LRZIP_DEPENDENCIES += host-nasm
|
|
LRZIP_CONF_OPTS += --enable-asm
|
|
else
|
|
LRZIP_CONF_OPTS += --disable-asm
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|