# $Id: PKGBUILD 176243 2013-01-28 00:29:21Z allan $ # Maintainer: pkgname=findutils pkgver=4.4.2 pkgrel=5 pkgdesc="GNU utilities to locate files" arch=('i686' 'x86_64' 'mips64el') license=('GPL3') groups=('base' 'base-devel') depends=('glibc' 'sh') url="http://www.gnu.org/software/findutils" source=(ftp://ftp.gnu.org/pub/gnu/findutils/${pkgname}-${pkgver}.tar.gz{,.sig}) install=findutils.install sha1sums=('e8dd88fa2cc58abffd0bfc1eddab9020231bb024' '77d9585d9feea0814752a31bf109fe287f528243') 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 } check() { cd "${srcdir}/${pkgname}-${pkgver}" make check } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR=$pkgdir install }