mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
Release zchunk 1.2.0 with the following changes:
* Now builds for Windows
* Can set '--uncompressed' flag when creating zchunk files to also store
uncompressed digests
* 'zck_read_header' now indicates whether there's a dictionary and what flags
are enabled in the zchunk file
* Minimum meson version required to build zchunk is now 0.53
* Switched to use GitHub actions for automated testing
* Added the following automated test environments:
* 'centos-8-stream'
* 'centos-9-stream'
* 'ubuntu-lts'
* 'windows', both using Mamba and meson-wrap
* 'macos'
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
564 B
BlitzBasic
23 lines
564 B
BlitzBasic
DESCRIPTION = "A file format designed for highly efficient deltas while maintaining good compression"
|
|
AUTHOR = "Jonathan Dieter"
|
|
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=daf6e68539f564601a5a5869c31e5242"
|
|
|
|
SRC_URI = "git://github.com/zchunk/zchunk.git;protocol=https;branch=main"
|
|
|
|
SRCREV = "dd6a30a1e4e8b738b0cafc682f3c00e7706134e5"
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "\
|
|
curl \
|
|
zstd \
|
|
"
|
|
|
|
DEPENDS:append:libc-musl = " argp-standalone"
|
|
LDFLAGS:append:libc-musl = " -largp"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|