logo

live-bootstrap

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

pass1.sh (568B)


  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. rm po/*.gmo
  12. }
  13. src_configure() {
  14. CC=tcc ./configure --prefix="${PREFIX}" --disable-nls
  15. }
  16. src_compile() {
  17. make "${MAKEJOBS}" MAKEINFO=true
  18. }
  19. src_install() {
  20. make MAKEINFO=true DESTDIR="${DESTDIR}" install
  21. }