PKGBUILDs/core/autoconf/PKGBUILD
2009-10-31 09:10:07 -05:00

25 lines
758 B
Bash

# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
pkgname=autoconf
pkgver=2.64
pkgrel=1
pkgdesc="A GNU tool for automatically configuring source code"
arch=('i686' 'x86_64' 'arm')
license=('GPL2' 'GPL3')
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=('30a198cef839471dd4926e92ab485361')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install || return 1
rm -f ${pkgdir}/usr/share/info/dir
# conflict with bintuils
rm -f ${pkgdir}/usr/share/info/standards.info
gzip -9 ${pkgdir}/usr/share/info/*
}