logo

live-bootstrap

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

pass1.sh (592B)


  1. # SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. default
  6. rm doc/make.info
  7. touch doc/make.info
  8. # We don't have autopoint from gettext yet
  9. AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
  10. }
  11. src_configure() {
  12. ./configure \
  13. --prefix="${PREFIX}" \
  14. --build=i386-unknown-linux-musl \
  15. --disable-nls
  16. }
  17. src_compile() {
  18. make "${MAKEJOBS}" MAKEINFO="true"
  19. }
  20. src_install() {
  21. make install MAKEINFO="true" DESTDIR="${DESTDIR}"
  22. }