logo

live-bootstrap

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

pass1.sh (485B)


  1. # SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. urls="https://carlowood.github.io/which/which-2.21.tar.gz"
  5. src_prepare() {
  6. rm configure Makefile.in aclocal.m4 which.1
  7. touch ChangeLog which.1
  8. sed -i '/@ACLOCAL_CWFLAGS@/d' Makefile.am
  9. autoreconf-2.69 -fi
  10. }
  11. src_configure() {
  12. ./configure --prefix="${PREFIX}"
  13. }
  14. src_install() {
  15. default
  16. rm "${DESTDIR}/${PREFIX}/share/man/man1/which.1"
  17. }