# $Id: PKGBUILD 180851 2013-03-27 01:10:50Z allan $ # Maintainer: Allan McRae # Contributor: Andreas Radke pkgname=file pkgver=5.14 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') options=('!libtool') source=(ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('c26625f1d6773ad4bc5a87c0e315632c') 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 }