Replace automake 1.5 with automake 1.6.3

This commit is contained in:
Andrius Štikonas 2021-03-15 23:50:26 +00:00
parent e31ae5a8f9
commit 9fb1287f13
9 changed files with 67 additions and 123 deletions

24
sysa/automake-1.6.3/stage2.sh Executable file
View file

@ -0,0 +1,24 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm configure Makefile.in */Makefile.in */*/Makefile.in aclocal.m4
aclocal-1.6
autoconf-2.52
automake-1.6
}
src_configure() {
./configure --prefix=/after
}
src_install() {
# cleanup old manual install
rm "${PREFIX}"/bin/automake-1.6
rm "${PREFIX}"/bin/aclocal-1.6
rm -rf "${PREFIX}"/share/automake-1.6
rm -rf "${PREFIX}"/share/aclocal-1.6
default_src_install
}