summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-12-03 12:37:42 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-12-03 12:37:42 -0500
commit611fe122b72052100701a616443ac72fe15b3e63 (patch)
treef25c914906a756706555b1471ebc709695ac0008 /pcr
parent6efcac5171ee03b66e0be57e2dbd6ceca65aa786 (diff)
move wdiff from ~lukeshu to pcr
Diffstat (limited to 'pcr')
-rw-r--r--pcr/wdiff/PKGBUILD29
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')