diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-12-24 16:09:02 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-12-24 16:09:02 -0500 |
commit | 21d21856b9ef35f98c4e714ce526febc50fedb2b (patch) | |
tree | 76bf8fdca59e6ed9b4ee2730a879e0795e794335 /~lukeshu | |
parent | 976b093b36a5c78ec0de8e194c1066f93965e7d3 (diff) |
add ~lukeshu/wdiff 1.1.0 (GNU Wdiff)
Diffstat (limited to '~lukeshu')
-rw-r--r-- | ~lukeshu/stow/PKGBUILD | 2 | ||||
-rw-r--r-- | ~lukeshu/wdiff/PKGBUILD | 29 |
2 files changed, 30 insertions, 1 deletions
diff --git a/~lukeshu/stow/PKGBUILD b/~lukeshu/stow/PKGBUILD index aa0d62ac3..24a2dcb1c 100644 --- a/~lukeshu/stow/PKGBUILD +++ b/~lukeshu/stow/PKGBUILD @@ -5,7 +5,7 @@ pkgver=2.1.2 pkgrel=1 pkgdesc="A program for managing the installation of software packages, keeping them separate while making them appear to be installed in the same place." arch=(any) -url="https://www.gnu.org/software/stow/" +url="https://www.gnu.org/software/$pkgname/" license=('GPL2') depends=('perl>=5.6.1') source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) 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') |