logo

live-bootstrap

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

pass1.sh (487B)


  1. # SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
  6. }
  7. src_configure() {
  8. # We use internal glib because standalone glib library depends on
  9. # pkg-config and other software (python/meson) that we do not have.
  10. ./configure \
  11. --prefix="${PREFIX}" \
  12. --build=i386-unknown-linux-musl \
  13. --with-internal-glib
  14. }