live-bootstrap/steps/autoconf-2.52/pass1.sh

22 lines
734 B
Bash
Raw Normal View History

2021-02-21 21:09:47 +00:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
2021-02-21 21:09:47 +00:00
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_compile() {
rm doc/standards.info doc/autoconf.info
2021-02-21 21:09:47 +00:00
cp autoconf.in autoconf
2021-03-17 00:24:37 +00:00
sed -i -e "s# @SHELL@#/bin/sh#" -e 's/@M4@/m4/' -e 's/@AWK@/awk/' \
-e 's/@PACKAGE_NAME@/Autoconf/' -e 's/@VERSION@/2.52/' \
-e "s#@datadir@#${PREFIX}/share/autoconf-2.52#" autoconf
2021-02-21 21:09:47 +00:00
chmod +x autoconf
m4 autoconf.m4 --freeze-state=autoconf.m4f
}
src_install() {
2022-05-09 19:55:26 +01:00
install -D autoconf "${DESTDIR}${PREFIX}/bin/autoconf-2.52"
mkdir -p "${DESTDIR}${PREFIX}/share/autoconf-2.52"
cp -r -- *.m4* "${DESTDIR}${PREFIX}/share/autoconf-2.52/"
2021-02-21 21:09:47 +00:00
}