logo

live-bootstrap

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

pass1.sh (478B)


  1. # SPDX-FileCopyrightText: © 2023 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. # Remove bison generated files
  6. rm bc/bc.c bc/bc.h
  7. rm bc/scan.c
  8. # Skip documentation
  9. sed -i 's/ doc//' Makefile.am
  10. # Rebuild configure script
  11. AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
  12. }
  13. src_configure() {
  14. ./configure --prefix="${PREFIX}" \
  15. --build=i386-unknown-linux-musl
  16. }