mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
The CPE long_range_zip_project:long_range_zip hasn't been used since 2023. While ckolivas:lrzip got 3 CVEs that affect the current Buildroot version [1][2][3]. [1] https://nvd.nist.gov/vuln/detail/CVE-2025-9396 [2] https://nvd.nist.gov/vuln/detail/CVE-2025-15570 [2] https://nvd.nist.gov/vuln/detail/CVE-2025-15571 Signed-off-by: Thomas Perale <thomas.perale@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
587 B
Makefile
23 lines
587 B
Makefile
################################################################################
|
|
#
|
|
# lrzip
|
|
#
|
|
################################################################################
|
|
|
|
LRZIP_VERSION = 0.651
|
|
LRZIP_SOURCE = lrzip-$(LRZIP_VERSION).tar.xz
|
|
LRZIP_SITE = http://ck.kolivas.org/apps/lrzip
|
|
LRZIP_LICENSE = GPL-2.0+
|
|
LRZIP_LICENSE_FILES = COPYING
|
|
LRZIP_CPE_ID_VENDOR = ckolivas
|
|
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))
|