live-bootstrap/sysa/autoconf-2.13/autoconf-2.13.sh

24 lines
467 B
Bash
Executable File

# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm configure standards.info autoconf.info
touch autoconf.info
autoconf-2.52
sed -i '/^acdatadir/s:$:-2.13:' Makefile.in
}
src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.13
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true DESTDIR="${DESTDIR}"
}