live-bootstrap/sysa/automake-1.8.5/automake-1.8.5.sh

23 lines
511 B
Bash
Raw Normal View History

2022-07-07 20:43:39 +01:00
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
2021-03-18 19:53:06 +00:00
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
2021-05-26 00:48:05 +01:00
rm doc/automake.info*
2022-07-07 20:43:39 +01:00
AUTOMAKE=automake-1.7 ACLOCAL=aclocal-1.7 AUTOCONF=autoconf-2.59 autoreconf-2.59 -f
2021-03-18 19:53:06 +00:00
}
src_configure() {
AUTOCONF=autoconf-2.59 ./configure --prefix="${PREFIX}"
2021-03-18 19:53:06 +00:00
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true DESTDIR="${DESTDIR}"
2022-07-07 20:43:39 +01:00
rm "${DESTDIR}/usr/bin/automake" "${DESTDIR}/usr/bin/aclocal"
}