Files
meta-openembedded/meta-oe/recipes-support/zchunk/zchunk_1.1.5.bb
Pierre-Jean Texier 5c453ae578 zchunk: add recipe
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>
2020-01-23 14:39:21 -08:00

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"