blob: fe8622fcf6274dcf4cfccd09b8b070af220f3732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
description="A package of M4 macros to produce scripts to automatically configure sourcecode."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.gnu.org/software/autoconf"
depends=()
name=autoconf
version=2.67
release=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build ()
{
cd $name-$version;
./configure --prefix=$prefix --mandir=$PKG$mandir;
make;
make prefix=$PKG/usr install;
}
|