kumquat-buildroot/package/lrzip/lrzip.mk
Fabrice Fontaine d09ff6fd1f package/lrzip: add CPE variables
cpe:2.3🅰️long_range_zip_project:long_range_zip is a valid CPE
identifier for this package:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Along_range_zip_project%3Along_range_zip

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-10-09 20:05:47 +02:00

24 lines
632 B
Makefile

################################################################################
#
# lrzip
#
################################################################################
LRZIP_VERSION = 0.641
LRZIP_SITE = $(call github,ckolivas,lrzip,v$(LRZIP_VERSION))
LRZIP_AUTORECONF = YES
LRZIP_LICENSE = GPL-2.0+
LRZIP_LICENSE_FILES = COPYING
LRZIP_CPE_ID_VENDOR = long_range_zip_project
LRZIP_CPE_ID_PRODUCT = long_range_zip
LRZIP_DEPENDENCIES = zlib lz4 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))