diff options
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') |