# $Id: PKGBUILD 216932 2014-07-16 17:04:52Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Allan McRae # Contributor: Andreas Radke pkgname=which pkgver=2.20 pkgrel=7 pkgdesc='A utility to show the full path of commands' arch=('i686' 'x86_64') url='http://savannah.gnu.org/projects/which' license=('GPL3') groups=('base' 'base-devel') depends=('glibc' 'bash') install=which.install source=("http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}) md5sums=('95be0501a466e515422cde4af46b2744' 'SKIP') build() { cd $pkgname-$pkgver ./configure --prefix=/usr make } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: