Commit | Line | Data |
---|---|---|
6dca1d21 JB |
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 | |
b751b192 | 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
6dca1d21 JB |
5 | # Depends on: |
6 | ||
7 | name=autoconf | |
a755b04c | 8 | version=2.69 |
059cafcb | 9 | release=2 |
a755b04c | 10 | source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) |
6dca1d21 JB |
11 | |
12 | build () { | |
388064b2 | 13 | cd $name-$version |
22dc0385 VM |
14 | ./configure --build=$CHOST \ |
15 | --host=$CTARGET \ | |
16 | --prefix=/usr | |
388064b2 VM |
17 | make |
18 | make prefix=$PKG/usr install | |
19 | rm -r $PKG/usr/share/info | |
6dca1d21 | 20 | } |