# $Id: PKGBUILD 90967 2013-05-16 19:50:32Z bpiotrowski $ # Maintainer: Allan McRae # Contributor: Eduard "bekks" Warkentin # Contributor: Henning Garus pkgname=xdelta3 pkgver=3.0.7 pkgrel=1 pkgdesc="Diff utility which works with binary files" arch=('i686' 'x86_64') url="http://xdelta.org/" license=('GPL') depends=('xz') source=(http://xdelta.googlecode.com/files/$pkgname-$pkgver.tar.gz) md5sums=('ef6631e4f9219a80bcb9e3020962b6ec') build() { cd $pkgname-$pkgver ./configure --prefix=/usr make } check() { cd $pkgname-$pkgver ./xdelta3 test } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install }