mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-24 12:06:31 +01:00
Add Guix step including bootstrap bin, build guix, build iso and fix some small bug
This commit is contained in:
parent
fb146bbf97
commit
3178f1f9e0
36 changed files with 890 additions and 7 deletions
23
steps-guix/coreutils-8.30/pass1.sh
Normal file
23
steps-guix/coreutils-8.30/pass1.sh
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
SEED_PREFIX="/bootstrap-seeds/coreutils-8.30"
|
||||
|
||||
src_configure() {
|
||||
FORCE_UNSAFE_CONFIGURE=1 ./configure \
|
||||
--prefix="${SEED_PREFIX}" \
|
||||
--disable-nls \
|
||||
--disable-silent-rules \
|
||||
--enable-no-install-program=stdbuf,libstdbuf.so \
|
||||
CFLAGS="-Os -g0" \
|
||||
LDFLAGS="-static -pthread" \
|
||||
gl_cv_func_getcwd_path_max="no, but it is partly working" \
|
||||
gl_cv_prog_perl="no"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make "${MAKEJOBS}" MAKEINFO=true GPERF=true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make DESTDIR="${DESTDIR}" MAKEINFO=true install
|
||||
}
|
||||
1
steps-guix/coreutils-8.30/sources
Normal file
1
steps-guix/coreutils-8.30/sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
f https://mirrors.kernel.org/gnu/coreutils/coreutils-8.30.tar.xz e831b3a86091496cdba720411f9748de81507798f6130adeaef872d206e1b057
|
||||
Loading…
Add table
Add a link
Reference in a new issue