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 | |
Andrew Geissler | 89770b0 | 2020-06-13 10:40:47 -0500 | [diff] [blame] | 7 | SRC_URI = "git://github.com/zchunk/zchunk.git;protocol=https" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 8 | |
Andrew Geissler | ac970dd | 2021-02-12 15:32:45 -0600 | [diff] [blame] | 9 | SRCREV = "fe3e3af49fd30b68c21a9fcaac340ad8e7f91055" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 10 | S = "${WORKDIR}/git" |
| 11 | |
| 12 | DEPENDS = "\ |
| 13 | curl \ |
| 14 | zstd \ |
| 15 | " |
| 16 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame^] | 17 | DEPENDS:append:libc-musl = " argp-standalone" |
| 18 | LDFLAGS:append:libc-musl = " -largp" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 19 | |
| 20 | inherit meson |
| 21 | |
| 22 | BBCLASSEXTEND = "native nativesdk" |