summaryrefslogtreecommitdiff
path: root/~lukeshu/wdiff
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-25 23:14:50 +0000
committerroot <root@rshg054.dnsready.net>2011-12-25 23:14:50 +0000
commite39d5f838c08b5b57eae4c1aec4ae00acd18b239 (patch)
tree5508286adf4ead02d969fe07072a7823729ad256 /~lukeshu/wdiff
parent2d2e64c7c198ff82ea6e306f7673168dcf5ddca7 (diff)
Sun Dec 25 23:14:50 UTC 2011
Diffstat (limited to '~lukeshu/wdiff')
-rw-r--r--~lukeshu/wdiff/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/~lukeshu/wdiff/PKGBUILD b/~lukeshu/wdiff/PKGBUILD
new file mode 100644
index 000000000..6092b3d76
--- /dev/null
+++ b/~lukeshu/wdiff/PKGBUILD
@@ -0,0 +1,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')