blob: 6b6bc4af6be551d24954a15492f20e7a4dbed239 (
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
|
# Maintainer (Arch): speps <speps at aur dot archlinux dot org>
# Contributor (Arch): TDY <tdy@gmx.com>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=wdiff
pkgver=1.2.2
pkgrel=1.1
pkgdesc="A wordwise implementation of GNU diff"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/$pkgname/"
license=('GPL3')
depends=('ncurses')
install="$pkgname.install"
source=("http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('1c6ddd1f3106139ff9fe00e934df715f')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|