mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
23 lines
655 B
Bash
23 lines
655 B
Bash
|
# $Id: PKGBUILD 36362 2009-04-21 06:11:43Z eric $
|
||
|
# Maintainer: simo <simo@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=xdelta
|
||
|
pkgver=1.1.4
|
||
|
pkgrel=2
|
||
|
pkgdesc="Used to identify differences between files similar to rsync"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://sourceforge.net/projects/xdelta/"
|
||
|
license=('GPL')
|
||
|
depends=('glib' 'zlib')
|
||
|
options=('!libtool')
|
||
|
source=("http://xdelta.googlecode.com/files/$pkgname-$pkgver.tar.gz")
|
||
|
md5sums=('1b896c01ebf0e353b7e3c3071b05f496')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|