2093053106
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for zlib license is Zlib. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/zlib( )?(license)?/Zlib/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
540 B
Makefile
17 lines
540 B
Makefile
################################################################################
|
|
#
|
|
# minizip
|
|
#
|
|
################################################################################
|
|
|
|
MINIZIP_VERSION = 5f56dd81d94bd7028f7dc05d7d14112697c30241
|
|
MINIZIP_SITE = $(call github,nmoinvaz,minizip,$(MINIZIP_VERSION))
|
|
MINIZIP_DEPENDENCIES = zlib
|
|
MINIZIP_AUTORECONF = YES
|
|
MINIZIP_INSTALL_STAGING = YES
|
|
MINIZIP_CONF_OPTS = $(if $(BR2_PACKAGE_MINIZIP_DEMOS),--enable-demos)
|
|
MINIZIP_LICENSE = Zlib
|
|
MINIZIP_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(autotools-package))
|