summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c2fb3ae9e3c3bbe2daecfcc187807e4d8e6724d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>

pkgname=libxdiff
pkgver=0.23
pkgrel=2
pkgdesc="The LibXDiff library implements basic and yet complete functionalities to create file differences/patches"
arch=(i686 x86_64)
url="http://www.xmailserver.org/xdiff-lib.html"
license=('GPL')
source=(http://www.xmailserver.org/$pkgname-$pkgver.tar.gz)
sha256sums=('e9af96174e83c02b13d452a4827bdf47cb579eafd580953a8cd2c98900309124')

build() {
  cd "$srcdir"/$pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir"/$pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: