2013-11-26 00:51:52 +11:00
|
|
|
# Description: A binary diff tool that uses the VCDIFF (RFC 3284) format and compression.
|
|
|
|
# URL: http://xdelta.org/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2013-11-26 00:51:52 +11:00
|
|
|
# Depends on: xz
|
|
|
|
|
|
|
|
name=xdelta3
|
2020-06-12 19:05:17 +10:00
|
|
|
version=3.1.0
|
2013-11-26 00:51:52 +11:00
|
|
|
release=1
|
2020-06-12 19:05:17 +10:00
|
|
|
source=(https://github.com/jmacd/xdelta-gpl/releases/download/v$version/$name-$version.tar.gz)
|
2013-11-26 00:51:52 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2015-12-21 03:01:43 +11:00
|
|
|
./configure --prefix=/usr
|
2013-11-26 00:51:52 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|