1 # Maintainer: Dave Reisner <d@falconindy.com>
6 pkgdesc="A GNU tool for automatically configuring source code"
8 license=('GPL2' 'GPL3' 'custom')
9 url="http://www.gnu.org/software/autoconf"
11 depends=('awk' 'm4' 'diffutils' 'bash')
13 conflicts=('autoconf')
14 install=autoconf.install
16 _gitroot="git://git.sv.gnu.org/autoconf"
21 msg "Connecting to GIT server...."
23 if [[ -d $_gitname ]] ; then
24 cd $_gitname && git pull origin
25 msg "The local files are updated."
27 git clone $_gitroot $_gitname
30 msg "GIT checkout done or server timeout"
31 msg "Starting make..."
33 rm -rf "$srcdir/$_gitname-build"
34 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
35 cd "$srcdir/$_gitname-build"
37 # FFFFFFFFFUUUUUUUUUUUUUUUUUU
38 cp /usr/share/automake-1.11/INSTALL .
40 aclocal -I m4 --install
42 automake --add-missing
43 ./configure --prefix=/usr
48 cd "$srcdir/$_gitname-build"
50 make DESTDIR="$pkgdir/" install
51 rm "$pkgdir/usr/share/info/standards.info"