logo

live-bootstrap

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

pass1.sh (552B)


  1. # SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. # SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
  3. #
  4. # SPDX-License-Identifier: GPL-3.0-or-later
  5. src_prepare() {
  6. default
  7. ACLOCAL=aclocal-1.8 AUTOMAKE=automeke-1.8 autoreconf-2.59 -f
  8. rm help2man.info
  9. touch help2man.info
  10. rm help2man*.1
  11. }
  12. src_configure() {
  13. CC=tcc ./configure --prefix="${PREFIX}" --disable-nls
  14. }
  15. src_compile() {
  16. make "${MAKEJOBS}" MAKEINFO=true
  17. }
  18. src_install() {
  19. make MAKEINFO=true DESTDIR="${DESTDIR}" install
  20. }