mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
zchunk is a compressed file format that splits the file into independent chunks. This allows you to only download changed chunks when downloading a new version of the file, and also makes zchunk files efficient over rsync. Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
647 B
BlitzBasic
27 lines
647 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=cd6e590282010ce90a94ef25dd31410f"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/zchunk/zchunk.git;protocol=https \
|
|
file://0001-zck.h-fix-build-on-musl.patch \
|
|
file://0002-unzck-fix-build-with-musl-libc.patch \
|
|
"
|
|
|
|
SRCREV = "c01bf12feede792982f165f52f4a6c573e3a8c17"
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "\
|
|
curl \
|
|
zstd \
|
|
"
|
|
|
|
DEPENDS_append_libc-musl = " argp-standalone"
|
|
LDFLAGS_append_libc-musl = " -largp"
|
|
|
|
inherit meson
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|