20 lines
477 B
Plaintext
20 lines
477 B
Plaintext
# Description: A package of M4 macros to produce scripts to automatically configure sourcecode. (2.13 version)
|
|
# URL: https://www.gnu.org/software/autoconf
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=autoconf-2.13
|
|
version=2.13
|
|
release=1
|
|
source=(https://mirror.fcix.net/gnu/autoconf/autoconf-$version.tar.gz)
|
|
|
|
build () {
|
|
cd autoconf-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--program-suffix=-2.13
|
|
make
|
|
make prefix=$PKG/usr install
|
|
|
|
rm -r $PKG/usr/info
|
|
}
|