live-bootstrap/steps/autoconf-archive-2021.02.19/pass1.sh

20 lines
410 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
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 "${MAKEJOBS}" MAKEINFO=true DESTDIR="${DESTDIR}"
2021-04-17 20:16:25 +01:00
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}