core/grep/PKGBUILD

25 lines
692 B
Bash
Raw Normal View History

2010-04-06 01:09:31 +08:00
# $Id: PKGBUILD 75676 2010-04-02 10:43:26Z allan $
2010-03-13 23:25:19 +08:00
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=grep
2010-04-06 01:09:31 +08:00
pkgver=2.6.3
2010-03-28 19:57:40 +08:00
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="A string search utility"
arch=('i686' 'x86_64')
license=('GPL3')
url="http://www.gnu.org/software/grep/grep.html"
groups=('base')
2010-03-28 19:57:40 +08:00
depends=('glibc' 'pcre' 'sh')
2010-03-13 23:25:19 +08:00
makedepends=('texinfo>=4.8a')
install=${pkgname}.install
2010-03-28 19:57:40 +08:00
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz)
2010-04-06 01:09:31 +08:00
md5sums=('69a3bf508a3f14d12369e0e1c7a92763')
2010-03-13 23:25:19 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --bindir=/bin --without-included-regex
make || return 1
make DESTDIR=${pkgdir} install || return 1
}