logo

live-bootstrap

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

pass2.sh (628B)


  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. rm doc/make.info*
  7. touch doc/make.info
  8. rm po/*.gmo
  9. # We don't have autopoint from gettext yet
  10. AUTOPOINT=true AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.64 autoreconf-2.64 -fi
  11. }
  12. src_configure() {
  13. ./configure \
  14. --prefix="${PREFIX}" \
  15. --build=i386-unknown-linux-gnu \
  16. --disable-nls
  17. }
  18. src_compile() {
  19. make "${MAKEJOBS}" MAKEINFO="true"
  20. }
  21. src_install() {
  22. make install MAKEINFO="true" DESTDIR="${DESTDIR}"
  23. }