updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / libxdiff / PKGBUILD
blob86e25584df3b86739aaf55a88a711e3d5085f4d1
2 pkgname=libxdiff
3 pkgver=0.23
4 pkgrel=1
5 pkgdesc="The LibXDiff library implements basic and yet complete functionalities to create file differences/patches"
6 arch=(i686 x86_64)
7 url="http://www.xmailserver.org/xdiff-lib.html"
8 license=('GPL')
9 groups=()
10 depends=()
11 makedepends=()
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 options=(!libtool)
17 install=
18 source=(http://www.xmailserver.org/$pkgname-$pkgver.tar.gz)
19 noextract=()
20 md5sums=('8970281543130411d8a1b1f004a8418b')
22 build() {
23   cd "$srcdir/$pkgname-$pkgver"
25   ./configure --prefix=/usr
26   make || return 1
27   make DESTDIR="$pkgdir/" install
30 # vim:set ts=2 sw=2 et: