mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
1. Adds sha256sum stage to the bash build harness. 2. Adds a third argument to build(), the checksum file name. This is used where there is more than one checksum file, most notably in multi-stage compilations. 3. Adds checksum files to all remaining programs. 4. Adds appropriate 3rd argument where needed (coreutils, tcc-musl, bison).
55 lines
862 B
Bash
Executable file
55 lines
862 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
# shellcheck source=sysa/helpers.sh
|
|
. helpers.sh
|
|
|
|
export PREFIX=/after
|
|
|
|
# Part 20
|
|
build flex-2.5.11
|
|
|
|
# Part 21
|
|
build musl-1.1.24
|
|
|
|
# Part 22
|
|
build tcc-0.9.27 tcc-musl.sh checksums/tcc-musl
|
|
|
|
# Part 23
|
|
build m4-1.4.7
|
|
|
|
# Part 24
|
|
build flex-2.6.4
|
|
|
|
# Part 25
|
|
build bison-3.4.1 stage1.sh checksums/stage1
|
|
build bison-3.4.1 stage2.sh checksums/stage2
|
|
build bison-3.4.1 stage3.sh checksums/stage3
|
|
|
|
# Part 26
|
|
build grep-2.4
|
|
|
|
# Part 27
|
|
build diffutils-2.7
|
|
|
|
# Part 28
|
|
build coreutils-5.0 coreutils-5.0.sh checksums/pass2
|
|
|
|
# Part 29
|
|
build gawk-3.0.4
|
|
|
|
# Part 29
|
|
build perl-5.000
|
|
|
|
# Part 30
|
|
build perl-5.003
|
|
|
|
# Part 31
|
|
build perl5.004_05
|
|
|
|
echo "Bootstrapping completed."
|