logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

pass1.sh (617B)


  1. # SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. rm doc/automake.info*
  6. sed -i 's/1.8a/1.8.5/; s/ filename-length-max=99//' configure.ac
  7. AUTOMAKE=automake-1.8 ACLOCAL=aclocal-1.8 AUTOM4TE=autom4te-2.61 AUTOCONF=autoconf-2.61 autoreconf-2.61 -f
  8. }
  9. src_configure() {
  10. AUTOCONF=autoconf-2.61 ./configure --prefix="${PREFIX}"
  11. }
  12. src_compile() {
  13. make "${MAKEJOBS}" MAKEINFO=true
  14. }
  15. src_install() {
  16. make install MAKEINFO=true DESTDIR="${DESTDIR}"
  17. rm "${DESTDIR}/usr/bin/automake" "${DESTDIR}/usr/bin/aclocal"
  18. }