logo

live-bootstrap

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

pass1.sh (610B)


  1. # SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. default
  6. AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
  7. # Remove pregenerated files
  8. rm parse.c parse.h scan.c
  9. # Remove pregenerated .info
  10. rm doc/flex.info
  11. }
  12. src_configure() {
  13. ./configure \
  14. --prefix="${PREFIX}" \
  15. --libdir="${LIBDIR}" \
  16. --program-suffix=-2.5.33
  17. }
  18. src_compile() {
  19. make "${MAKEJOBS}" MAKEINFO=true
  20. }
  21. src_install() {
  22. make MAKEINFO=true DESTDIR="${DESTDIR}" install
  23. }