# $Id: PKGBUILD 205932 2014-02-14 08:16:42Z allan $ # Maintainer: Allan McRae # Contributor: Andreas Radke pkgname=file pkgver=5.17 pkgrel=1 pkgdesc="File type identification utility" arch=('i686' 'x86_64') license=('custom') groups=('base' 'base-devel') url="http://www.darwinsys.com/file/" depends=('glibc' 'zlib') source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('e19c47e069ced7b01ccb4db402cc01d3') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --datadir=/usr/share/file make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR=${pkgdir} install install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING }