# $Id: PKGBUILD 176241 2013-01-28 00:29:18Z allan $ # Maintainer: Allan McRae # Contributor: Andreas Radke pkgname=file pkgver=5.11 pkgrel=2 pkgdesc="File type identification utility" arch=('i686' 'x86_64') license=('custom') groups=('base' 'base-devel') url="http://www.darwinsys.com/file/" depends=('glibc' 'zlib') options=('!libtool') source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('16a407bd66d6c7a832f3a5c0d609c27b') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --datadir=/usr/share/file make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR=${pkgdir} install install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING }