summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/autoconf/PKGBUILD
blob: 1ac8ed653070a352e19eec843640aa2277c29570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $Id: PKGBUILD 12545 2008-09-15 12:33:36Z andyrtr $
# Maintainer: Andreas Radke <adyrtr@archlinux.org>

pkgname=autoconf
pkgver=2.66
pkgrel=1
pkgdesc="A GNU tool for automatically configuring source code"
arch=(i686 x86_64)
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)

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
}
md5sums=('fb00d77cbc468994c55919298af1ff02')