PKGBUILDs/community/dwdiff/PKGBUILD

21 lines
596 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=dwdiff
pkgver=1.5.2
pkgrel=2
pkgdesc="dwdiff is a front-end for the diff program that operates at the word level instead of the line level"
arch=('i686' 'x86_64')
url="http://os.ghalkes.nl/dwdiff.html"
depends=('diffutils' 'icu')
license=('GPL')
source=(http://os.ghalkes.nl/dist/$pkgname-$pkgver.tgz)
md5sums=('f745fc3a965b9716ed49c8dac77d689a')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}