logo

live-bootstrap

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

pass1.sh (430B)


  1. # SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. find . -name '*.info*' -delete
  6. autoreconf-2.71 -fi
  7. }
  8. src_configure() {
  9. ./configure \
  10. --prefix="${PREFIX}" \
  11. --libdir="${LIBDIR}" \
  12. --build=i386-unknown-linux-musl \
  13. --disable-shared \
  14. --with-gcc-arch=generic \
  15. --enable-pax_emutramp
  16. }