diff options
Diffstat (limited to 'community-testing/dwdiff')
-rw-r--r-- | community-testing/dwdiff/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community-testing/dwdiff/PKGBUILD b/community-testing/dwdiff/PKGBUILD new file mode 100644 index 000000000..2b41b97b5 --- /dev/null +++ b/community-testing/dwdiff/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 69094 2012-04-09 13:49:12Z tdziedzic $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=dwdiff +pkgver=2.0 +pkgrel=2 +pkgdesc="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=('98dd16b58a1f136a2cd49f7dd88c5313') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make prefix="$pkgdir"/usr install +} |