summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb
diff options
context:
space:
mode:
authorMatthieu CRAPET <Matthieu.CRAPET@ingenico.com>2014-05-12 12:00:59 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2014-05-15 12:30:19 +0200
commit228119cb3e06460192035966b18d3c24c3d0f3d9 (patch)
tree6cf89b9caa66e9e254048c2bd57a07f1112d3271 /meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb
parentde87d83a642d720d8330808978d4cf0ea3c22d96 (diff)
downloadmeta-openembedded-228119cb3e06460192035966b18d3c24c3d0f3d9.tar.gz
xdelta3: add optional lzma support
Using PACKAGECONFIG. Disabled by default. Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb')
-rw-r--r--meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb b/meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb
index 16a72ee8e..baa92e4bb 100644
--- a/meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb
+++ b/meta-oe/recipes-support/xdelta/xdelta3_3.0.8.bb
@@ -8,8 +8,14 @@ LICENSE = "GPLv2"
8LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" 8LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
9 9
10SRC_URI = "http://xdelta.googlecode.com/files/${BPN}-${PV}.tar.xz \ 10SRC_URI = "http://xdelta.googlecode.com/files/${BPN}-${PV}.tar.xz \
11 file://compilation-fix.patch" 11 file://compilation-fix.patch \
12 file://with-liblzma-configure-option.patch \
13"
12SRC_URI[md5sum] = "c3ae3286ce4193de8e03d5bcaccf3bc3" 14SRC_URI[md5sum] = "c3ae3286ce4193de8e03d5bcaccf3bc3"
13SRC_URI[sha256sum] = "3a86f29c95664fb44b8a40ff22d9bcc3e87aa8c01f0ff75931a7fa78ed3d2e55" 15SRC_URI[sha256sum] = "3a86f29c95664fb44b8a40ff22d9bcc3e87aa8c01f0ff75931a7fa78ed3d2e55"
14 16
15inherit autotools 17inherit autotools
18
19# Optional secondary compression
20PACKAGECONFIG ??= ""
21PACKAGECONFIG[lzma] = "--with-liblzma,--without-liblzma,xz"