GNU Automake 1.9.6

This commit is contained in:
Andrius Štikonas 2021-03-19 21:38:18 +00:00
parent 7364615a86
commit 2527d948a2
5 changed files with 50 additions and 0 deletions

20
sysa/automake-1.9.6/stage1.sh Executable file
View file

@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
sed -i 's/1.8a/1.8.5/; s/ filename-length-max=99//' configure.ac
autoreconf-2.61 -f
}
src_configure() {
./configure --prefix=/after
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}

19
sysa/automake-1.9.6/stage2.sh Executable file
View file

@ -0,0 +1,19 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
autoreconf-2.61 -f
}
src_configure() {
./configure --prefix=/after
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}

View file

@ -9,6 +9,9 @@
set -e
. helpers.sh
build automake-1.9.6 stage1.sh
build automake-1.9.6 stage2.sh
echo "Bootstrapping completed."
exec env - PATH=/after/bin PS1="\w # " bash -i