mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
- Rename sources to distfiles for clarity. - Per sys(a/c) distfiles to reduce rootfs.py processing and reduce RAM usage in sysa. - Canonicalise early kaem mes/tcc files to kaem script conventions. - Cleanup unused setup in python.
23 lines
567 B
Bash
Executable file
23 lines
567 B
Bash
Executable file
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
EXTRA_DISTFILES="gnulib-52a06cb3.tar.gz"
|
|
|
|
src_prepare() {
|
|
find . -name '*.info*' -delete
|
|
|
|
# libunistring does not specify which gnulib snapshot was used,
|
|
# pick a random one that works
|
|
GNULIB_TOOL=../gnulib-52a06cb3/gnulib-tool ./autogen.sh
|
|
|
|
# autogen.sh does not regenerate libtool files
|
|
autoreconf-2.69 -fi
|
|
}
|
|
|
|
src_configure() {
|
|
./configure \
|
|
--prefix="${PREFIX}" \
|
|
--libdir="${PREFIX}/lib/musl" \
|
|
--disable-shared
|
|
}
|