logo

live-bootstrap

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

pass1.sh (525B)


  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. AUTOMAKE=automake-1.7 ACLOCAL=aclocal-1.7 AUTOCONF=autoconf-2.59 autoreconf-2.59 -f
  7. }
  8. src_configure() {
  9. AUTOCONF=autoconf-2.59 ./configure --prefix="${PREFIX}"
  10. }
  11. src_compile() {
  12. make "${MAKEJOBS}" MAKEINFO=true
  13. }
  14. src_install() {
  15. make install MAKEINFO=true DESTDIR="${DESTDIR}"
  16. rm "${DESTDIR}/usr/bin/automake" "${DESTDIR}/usr/bin/aclocal"
  17. }