diff options
Diffstat (limited to 'meta-oe/recipes-support/zchunk/zchunk_1.5.1.bb')
-rw-r--r-- | meta-oe/recipes-support/zchunk/zchunk_1.5.1.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/zchunk/zchunk_1.5.1.bb b/meta-oe/recipes-support/zchunk/zchunk_1.5.1.bb new file mode 100644 index 0000000000..9ef380005c --- /dev/null +++ b/meta-oe/recipes-support/zchunk/zchunk_1.5.1.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "A file format designed for highly efficient deltas while maintaining good compression" | ||
2 | |||
3 | LICENSE = "BSD-2-Clause" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=daf6e68539f564601a5a5869c31e5242" | ||
5 | |||
6 | SRC_URI = "git://github.com/zchunk/zchunk.git;protocol=https;branch=main" | ||
7 | |||
8 | SRCREV = "69dd7d6764e333413dd12848607d72cab310e406" | ||
9 | |||
10 | DEPENDS = "zstd" | ||
11 | DEPENDS:append:libc-musl = " argp-standalone" | ||
12 | |||
13 | inherit meson pkgconfig lib_package | ||
14 | |||
15 | PACKAGECONFIG ??= "openssl zckdl" | ||
16 | |||
17 | # zckdl gets packaged into zchunk-bin | ||
18 | PACKAGECONFIG[zckdl] = "-Dwith-curl=enabled,-Dwith-curl=disabled,curl" | ||
19 | # Use OpenSSL primitives for SHA | ||
20 | PACKAGECONFIG[openssl] = "-Dwith-openssl=enabled,-Dwith-openssl=disabled,openssl" | ||
21 | |||
22 | BBCLASSEXTEND = "native nativesdk" | ||