# $Id: PKGBUILD 100218 2010-11-21 23:38:22Z stephane $ # Maintainer: pkgname=findutils pkgver=4.4.2 pkgrel=3 pkgdesc="GNU utilities to locate files" arch=('i686' 'x86_64') license=('GPL3') groups=('base') depends=('glibc' 'sh') url="http://www.gnu.org/software/findutils" source=(ftp://ftp.gnu.org/pub/gnu/findutils/${pkgname}-${pkgver}.tar.gz) install=findutils.install sha1sums=('e8dd88fa2cc58abffd0bfc1eddab9020231bb024') build() { cd "${srcdir}/${pkgname}-${pkgver}" # Don't build or install locate because we use mlocate, # which is a secure version of locate. sed -i '/^SUBDIRS/s/locate//' Makefile.in ./configure --prefix=/usr make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR=$pkgdir install }