# $Id$ # Maintainer: Allan McRae # Contributor: judd pkgname=grep pkgver=2.9 pkgrel=1 pkgdesc="A string search utility" arch=('i686' 'x86_64') license=('GPL3') url="http://www.gnu.org/software/grep/grep.html" groups=('base') depends=('glibc' 'pcre' 'sh') makedepends=('texinfo') install=${pkgname}.install source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz) md5sums=('25e41b2aa201104354740961ef36005a') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --bindir=/bin --without-included-regex make } check() { cd ${srcdir}/${pkgname}-${pkgver} make check } package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }