mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
596 B
Bash
20 lines
596 B
Bash
# $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
|
|
}
|