From b2c6e3a074fc8317c912a82c0c711f105c365dca Mon Sep 17 00:00:00 2001 From: thomas Date: Mon, 23 Oct 2017 14:39:05 +0200 Subject: [PATCH] xdelta3: Add version 3.0.11 Xdelta version 3 is a C library and command-line tool for delta compression using VCDIFF/RFC 3284 streams. AFAIK the algorithm is also used within git. There is also a xdelta/xdelta1 binary around, thus the naming is rather ugly. Homepage: http://xdelta.org/ --- xdelta3.be0 | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 xdelta3.be0 diff --git a/xdelta3.be0 b/xdelta3.be0 new file mode 100755 index 000000000..5d5b9dc41 --- /dev/null +++ b/xdelta3.be0 @@ -0,0 +1,39 @@ +#!/usr/bin/env beesh + +# BEE_VERSION xdelta3-3.0.11-0 +SRCURL[0]="https://github.com/jmacd/xdelta/archive/v${PKGVERSION}/xdelta-${PKGVERSION}.tar.gz" + +# the archive also contains xdelta1, thus the slightly weird naming with xdelta/xdelta3 +sourcesubdir_append xdelta3 + +# PATCHURL+=() + +# EXCLUDE+=() + +# build_in_sourcedir + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +# this 'patch'-operation bootstraps the build, afterwards bee happily uses 'autotools' +mee_patch_post() { + autoreconf -fi +} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} +## by default this may be 'make install DESTDIR="${D}"'