logo

live-bootstrap

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

pass1.sh (541B)


  1. # SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 AUTOCONF=autoconf-2.69 AUTOM4TE=autom4te-2.69 ./bootstrap
  6. rm doc/automake-history.info doc/automake.info*
  7. cp "${PREFIX}/bin/help2man" doc/
  8. }
  9. src_configure() {
  10. AUTOCONF=autoconf-2.69 ./configure --prefix="${PREFIX}"
  11. }
  12. src_compile() {
  13. make "${MAKEJOBS}" MAKEINFO=true
  14. }
  15. src_install() {
  16. make install MAKEINFO=true DESTDIR="${DESTDIR}"
  17. }