6c1e4d98f3
Removed patch fixing CVE-2016-2037 which was applied upstream. This release fixes CVE-2015-1197, CVE-2016-2037, CVE-2019-14866. Switched to .bz2 tarball. Added hashes provided by upstream and license hash. Release notes: https://lists.gnu.org/archive/html/info-gnu/2019-11/msg00002.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
626 B
Makefile
22 lines
626 B
Makefile
################################################################################
|
|
#
|
|
# cpio
|
|
#
|
|
################################################################################
|
|
|
|
CPIO_VERSION = 2.13
|
|
CPIO_SOURCE = cpio-$(CPIO_VERSION).tar.bz2
|
|
CPIO_SITE = $(BR2_GNU_MIRROR)/cpio
|
|
CPIO_CONF_OPTS = --bindir=/bin
|
|
CPIO_LICENSE = GPL-3.0+
|
|
CPIO_LICENSE_FILES = COPYING
|
|
|
|
# cpio uses argp.h which is not provided by uclibc or musl by default.
|
|
# Use the argp-standalone package to provide this.
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
CPIO_DEPENDENCIES += argp-standalone
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|