mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-12 14:25:24 +01:00
GNU Autoconf 2.61
This commit is contained in:
parent
ce77c561db
commit
7364615a86
6 changed files with 68 additions and 0 deletions
30
sysa/autoconf-2.61/stage1.sh
Executable file
30
sysa/autoconf-2.61/stage1.sh
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e '/AC_PROG_GREP/d' -e '/AC_PROG_SED/d' configure.ac
|
||||
autoreconf-2.59 -f
|
||||
|
||||
# Install autoconf data files into versioned directory
|
||||
for file in */*/Makefile.in */Makefile.in Makefile.in; do
|
||||
sed -i '/^pkgdatadir/s:$:-@VERSION@:' $file
|
||||
done
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
./configure --prefix="${PREFIX}" --program-suffix=-2.61
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make MAKEINFO=true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make install MAKEINFO=true
|
||||
|
||||
ln -sf "${PREFIX}/bin/autoconf-2.61" "${PREFIX}/bin/autoconf"
|
||||
ln -sf "${PREFIX}/bin/autoheader-2.61" "${PREFIX}/bin/autoheader"
|
||||
ln -sf "${PREFIX}/bin/autom4te-2.61" "${PREFIX}/bin/autom4te"
|
||||
ln -sf "${PREFIX}/bin/autoreconf-2.61" "${PREFIX}/bin/autoreconf"
|
||||
}
|
||||
25
sysa/autoconf-2.61/stage2.sh
Executable file
25
sysa/autoconf-2.61/stage2.sh
Executable file
|
|
@ -0,0 +1,25 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e '/AC_PROG_GREP/d' -e '/AC_PROG_SED/d' configure.ac
|
||||
autoreconf-2.61 -f
|
||||
|
||||
# Install autoconf data files into versioned directory
|
||||
for file in */*/Makefile.in */Makefile.in Makefile.in; do
|
||||
sed -i '/^pkgdatadir/s:$:-@VERSION@:' $file
|
||||
done
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
./configure --prefix="${PREFIX}" --program-suffix=-2.61
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make MAKEINFO=true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make install MAKEINFO=true
|
||||
}
|
||||
|
|
@ -123,6 +123,9 @@ build automake-1.8.5
|
|||
|
||||
build help2man-1.36.4
|
||||
|
||||
build autoconf-2.61 stage1.sh
|
||||
build autoconf-2.61 stage2.sh
|
||||
|
||||
build bash-3.2.57
|
||||
|
||||
exec bash run2.sh
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue