bd8934b3ec
initial packaging by 6c37: https://crux.nu/portdb/?a=repo&q=6c37
20 lines
494 B
Plaintext
20 lines
494 B
Plaintext
# Description: A package of M4 macros to produce scripts to automatically configure sourcecode. (2.13 version)
|
|
# URL: http://www.gnu.org/software/autoconf
|
|
# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
|
|
# Depends on:
|
|
|
|
name=autoconf-2.13
|
|
version=2.13
|
|
release=1
|
|
source=(ftp://ftp.gnu.org/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
|
|
}
|