blob: 6092b3d76a24db520ca4a40cdc853f9ed4c9cf21 (
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
25
26
27
28
29
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
pkgname=wdiff
pkgver=1.1.0
pkgrel=1
pkgdesc="A front end to diff for comparing files on a word per word basis."
arch=('i686' 'x86_64')
url="https://www.gnu.org/software/$pkgname/"
license=('GPL3')
depends=('diffutils')
source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
check() {
cd "$srcdir/$pkgname-$pkgver"
make -k check
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
md5sums=('aa4dd87a9140a96ee85d2502673d19f3')
|