live-bootstrap/sysc/autoconf-archive-2021.02.19/autoconf-archive-2021.02.19.sh

22 lines
486 B
Bash
Raw Normal View History

# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
2021-04-17 20:16:25 +01:00
#
# SPDX-License-Identifier: GPL-3.0-or-later
urls="http://mirrors.kernel.org/gnu/autoconf-archive/autoconf-archive-2021.02.19.tar.xz"
2021-04-17 20:16:25 +01:00
src_prepare() {
2022-07-07 20:43:39 +01:00
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
2021-04-17 20:16:25 +01:00
}
src_configure() {
./configure --prefix="${PREFIX}"
}
src_compile() {
make MAKEINFO=true DESTDIR="${DESTDIR}"
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}