logo

live-bootstrap

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

pass1.sh (537B)


  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. # libunistring does not specify which gnulib snapshot was used,
  7. # pick a random one that works
  8. GNULIB_TOOL=../gnulib-52a06cb3/gnulib-tool ./autogen.sh
  9. # autogen.sh does not regenerate libtool files
  10. autoreconf-2.69 -fi
  11. }
  12. src_configure() {
  13. ./configure \
  14. --prefix="${PREFIX}" \
  15. --libdir="${LIBDIR}" \
  16. --disable-shared
  17. }