| 1 | # Description: A package of M4 macros to produce scripts to automatically configure sourcecode |
| 2 | # URL: http://www.gnu.org/software/autoconf |
| 3 | # Maintainer: CRUX System Team, core-ports at crux dot nu |
| 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
| 5 | # Depends on: |
| 6 | |
| 7 | name=autoconf |
| 8 | version=2.65 |
| 9 | release=1 |
| 10 | source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2) |
| 11 | |
| 12 | build () { |
| 13 | cd $name-$version |
| 14 | ./configure --prefix=/usr \ |
| 15 | --mandir=$PKG/usr/man |
| 16 | make |
| 17 | make prefix=$PKG/usr install |
| 18 | rm -r $PKG/usr/share/info |
| 19 | } |