diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-03 12:37:42 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-03 12:37:42 -0500 |
commit | 611fe122b72052100701a616443ac72fe15b3e63 (patch) | |
tree | f25c914906a756706555b1471ebc709695ac0008 /pcr/wdiff | |
parent | 6efcac5171ee03b66e0be57e2dbd6ceca65aa786 (diff) |
move wdiff from ~lukeshu to pcr
Diffstat (limited to 'pcr/wdiff')
-rw-r--r-- | pcr/wdiff/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pcr/wdiff/PKGBUILD b/pcr/wdiff/PKGBUILD new file mode 100644 index 000000000..41bee9679 --- /dev/null +++ b/pcr/wdiff/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=wdiff +pkgver=1.2.1 +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=('fc54e044b229a23c1cfa8e5689196f24') |