2020-10-19 16:45:32 +00:00
|
|
|
# Description: A package of M4 macros to produce scripts to automatically configure sourcecode. (2.13 version)
|
2023-08-27 17:50:34 +02:00
|
|
|
# URL: https://www.gnu.org/software/autoconf
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-10-19 16:45:32 +00:00
|
|
|
|
|
|
|
name=autoconf-2.13
|
|
|
|
version=2.13
|
|
|
|
release=1
|
2023-08-27 17:50:34 +02:00
|
|
|
source=(https://mirror.fcix.net/gnu/autoconf/autoconf-$version.tar.gz)
|
2020-10-19 16:45:32 +00:00
|
|
|
|
|
|
|
build () {
|
2023-08-27 17:50:34 +02:00
|
|
|
cd autoconf-$version
|
2020-10-19 16:45:32 +00:00
|
|
|
|
2023-08-27 17:50:34 +02:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--program-suffix=-2.13
|
|
|
|
make
|
|
|
|
make prefix=$PKG/usr install
|
2020-10-19 16:45:32 +00:00
|
|
|
|
2023-08-27 17:50:34 +02:00
|
|
|
rm -r $PKG/usr/info
|
2020-10-19 16:45:32 +00:00
|
|
|
}
|