Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame^] | 1 | DESCRIPTION = "A file format designed for highly efficient deltas while maintaining good compression" |
| 2 | AUTHOR = "Jonathan Dieter" |
| 3 | |
| 4 | LICENSE = "BSD-2-Clause" |
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cd6e590282010ce90a94ef25dd31410f" |
| 6 | |
| 7 | SRC_URI = " \ |
| 8 | git://github.com/zchunk/zchunk.git;protocol=https \ |
| 9 | file://0001-zck.h-fix-build-on-musl.patch \ |
| 10 | file://0002-unzck-fix-build-with-musl-libc.patch \ |
| 11 | " |
| 12 | |
| 13 | SRCREV = "c01bf12feede792982f165f52f4a6c573e3a8c17" |
| 14 | S = "${WORKDIR}/git" |
| 15 | |
| 16 | DEPENDS = "\ |
| 17 | curl \ |
| 18 | zstd \ |
| 19 | " |
| 20 | |
| 21 | DEPENDS_append_libc-musl = " argp-standalone" |
| 22 | LDFLAGS_append_libc-musl = " -largp" |
| 23 | |
| 24 | inherit meson |
| 25 | |
| 26 | BBCLASSEXTEND = "native nativesdk" |