17 lines
448 B
Plaintext
17 lines
448 B
Plaintext
# Description: A package of M4 macros to produce scripts to automatically configure sourcecode
|
|
# URL: http://www.gnu.org/software/autoconf
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=autoconf
|
|
version=2.70
|
|
release=1
|
|
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make prefix=$PKG/usr install
|
|
rm -r $PKG/usr/share/info
|
|
}
|