live-bootstrap/sysc/automake-1.15.1/automake-1.15.1.sh

33 lines
874 B
Bash
Raw Normal View History

# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
2021-04-01 00:28:30 +01:00
#
# SPDX-License-Identifier: GPL-3.0-or-later
urls="http://mirrors.kernel.org/gnu/automake/automake-1.15.1.tar.xz"
2021-04-01 00:28:30 +01:00
src_prepare() {
default
2021-04-01 00:28:30 +01:00
rm doc/amhello-1.0.tar.gz
AUTOCONF=autoconf-2.69 AUTOM4TE=autom4te-2.69 ./bootstrap
2021-05-26 00:48:05 +01:00
rm doc/automake-history.info doc/automake.info*
cp "${PREFIX}/bin/help2man" doc/
2021-04-01 00:28:30 +01:00
}
src_configure() {
AUTORECONF=autoreconf-2.69 AUTOM4TE=autom4te-2.69 AUTOHEADER=autoheader-2.69 AUTOCONF=autoconf-2.69 ./configure --prefix="${PREFIX}"
2021-04-01 00:28:30 +01:00
}
src_compile() {
make MAKEINFO=true
2021-04-01 00:28:30 +01:00
}
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"
rm "${DESTDIR}${PREFIX}/share/doc/automake/amhello-1.0.tar.gz"
2021-04-01 00:28:30 +01:00
}