diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-12-10 18:26:56 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-12-11 16:22:40 -0800 |
commit | 6d87abfa1df8f7f452670dcc56e04cbb4e707134 (patch) | |
tree | b09589cb93071b9a03a9a54bae5c3b6486d50289 /meta-oe/recipes-support/librsync | |
parent | 776ca8771bef574888fdf62a48afce8682c7f7aa (diff) | |
download | meta-openembedded-6d87abfa1df8f7f452670dcc56e04cbb4e707134.tar.gz |
librsync: new package
rdiff is a popular tool for calculating binary delta patches. It's
provided by the librsync package (unrelated to rsync already available
in poky).
This recipe adds new packages for librsync and rdiff.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/librsync')
-rw-r--r-- | meta-oe/recipes-support/librsync/librsync_2.2.1.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/librsync/librsync_2.2.1.bb b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb new file mode 100644 index 0000000000..c2f28fed25 --- /dev/null +++ b/meta-oe/recipes-support/librsync/librsync_2.2.1.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Remote delta-compression library." | ||
2 | AUTHOR = "Martin Pool, Andrew Tridgell, Donovan Baarda, Adam Schubert" | ||
3 | |||
4 | LICENSE = "LGPLv2.1+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" | ||
6 | |||
7 | SRC_URI = "git://github.com/librsync/librsync.git" | ||
8 | SRCREV = "5917692418657dc78c9cbde3a8db4c85f25b9c8d" | ||
9 | S = "${WORKDIR}/git" | ||
10 | |||
11 | DEPENDS = "popt" | ||
12 | |||
13 | inherit cmake | ||
14 | |||
15 | PACKAGES =+ "rdiff" | ||
16 | FILES_rdiff = "${bindir}/rdiff" | ||
17 | |||
18 | BBCLASSEXTEND = "native nativesdk" | ||