mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-23 06:06:51 +00:00
zsync is a tool that is similar to rsync but optimised for transfering single large files where you have a previous version of the file locally. These qualities make it an excellent choice for transfering built images between hosts. zsync-curl is a maintained fork of the original zsync, that uses curl for HTTP requests allowing it to connect to HTTPS servers. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
548 B
BlitzBasic
21 lines
548 B
BlitzBasic
SUMMARY = "File transfer tool optimised for large files (curl port)"
|
|
HOMEPAGE = "http://zsync.moria.org.uk/"
|
|
DEPENDS = "curl"
|
|
|
|
LICENSE = "Artistic-2.0"
|
|
LIC_FILES_CHKSUM = "file://src/COPYING;md5=71c0ac4d86266533509aa0825b8d323c"
|
|
|
|
SRC_URI = "git://github.com/probonopd/zsync-curl;protocol=https \
|
|
file://fixes.patch \
|
|
file://make.patch"
|
|
SRCREV = "00141c2806ccc4ddf2ff6263ee1612d19c0b713f"
|
|
|
|
PV = "0.6.2+git${SRCPV}"
|
|
|
|
inherit autotools
|
|
|
|
S = "${WORKDIR}/git"
|
|
AUTOTOOLS_SCRIPT_PATH = "${S}/src"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|