logo

live-bootstrap

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

pass1.sh (529B)


  1. # SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. # Delete translation catalogs
  6. find . -name "*.gmo" -delete
  7. rm -rf po4a/man
  8. AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 AUTOCONF=autoconf-2.69 AUTOM4TE=autom4te-2.69 autoreconf-2.69 -f
  9. }
  10. src_configure() {
  11. ./configure \
  12. --prefix="${PREFIX}" \
  13. --disable-shared \
  14. --disable-nls \
  15. --build=i386-unknown-linux-musl \
  16. --libdir="${LIBDIR}"
  17. }