diff options
Diffstat (limited to 'meta-oe/recipes-extended/libzip/libzip_1.9.2.bb')
-rw-r--r-- | meta-oe/recipes-extended/libzip/libzip_1.9.2.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libzip/libzip_1.9.2.bb b/meta-oe/recipes-extended/libzip/libzip_1.9.2.bb new file mode 100644 index 0000000000..f4de8607a0 --- /dev/null +++ b/meta-oe/recipes-extended/libzip/libzip_1.9.2.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | DESCRIPTION = "libzip is a C library for reading, creating, and modifying zip archives." | ||
2 | HOMEPAGE = "https://libzip.org/" | ||
3 | |||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d8a9d2078f35e61cf1122ccd440687cf" | ||
6 | |||
7 | DEPENDS = "zlib bzip2" | ||
8 | |||
9 | PACKAGECONFIG[ssl] = "-DENABLE_OPENSSL=ON,-DENABLE_OPENSSL=OFF,openssl" | ||
10 | PACKAGECONFIG[lzma] = "-DENABLE_LZMA=ON,-DENABLE_LZMA=OFF,xz" | ||
11 | PACKAGECONFIG[gnutls] = "-DENABLE_GNUTLS=ON,-DENABLE_GNUTLS=OFF,gnutls nettle" | ||
12 | PACKAGECONFIG[zstd] = "-DENABLE_ZSTD=ON,-DENABLE_ZSTD=OFF,zstd" | ||
13 | PACKAGECONFIG[mbedtls] = "-DENABLE_MBEDTLS=ON,-DENABLE_MBEDTLS=OFF,mbedtls" | ||
14 | PACKAGECONFIG[examples] = "-DENABLE_EXAMPLES=ON,-DENABLE_EXAMPLES=OFF," | ||
15 | PACKAGECONFIG[tools] = "-DENABLE_TOOLS=ON,-DENABLE_TOOLS=OFF," | ||
16 | PACKAGECONFIG[tests] = "-DBUILD_REGRESS=ON,-DBUILD_REGRESS=OFF," | ||
17 | |||
18 | PACKAGECONFIG ?= "ssl lzma tools examples" | ||
19 | |||
20 | inherit cmake | ||
21 | |||
22 | SRC_URI = "https://libzip.org/download/libzip-${PV}.tar.xz" | ||
23 | |||
24 | SRC_URI[sha256sum] = "c93e9852b7b2dc931197831438fee5295976ee0ba24f8524a8907be5c2ba5937" | ||
25 | |||
26 | # Patch for CVE-2017-12858 is applied in version 1.2.0. | ||
27 | CVE_CHECK_IGNORE += "CVE-2017-12858" | ||