# $Id: PKGBUILD 77795 2010-04-18 03:56:24Z allan $ # Maintainer: Allan McRae # Contributor: Andreas Radke pkgname=autoconf pkgver=2.65 pkgrel=2 pkgdesc="A GNU tool for automatically configuring source code" arch=('any') license=('GPL2' 'GPL3' 'custom') url="http://www.gnu.org/software/autoconf" groups=('base-devel') depends=('awk' 'm4' 'diffutils' 'bash') install=autoconf.install source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('46cfb40e0babf4c64f8325f03da81c9b') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr make || return 1 } package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install || return 1 # license exception install -Dm644 COPYING.EXCEPTION \ $pkgdir/usr/share/licenses/autoconf/COPYING.EXCEPTION # conflict with bintuils rm -f ${pkgdir}/usr/share/info/standards.info }