mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Ever since an old patch version, it has (for reasonable security reasons) not supported patched with ../ in the filename. Many of our patches have been relying on this behaviour being OK, because we start off with an ancient patch version that didn't perform such checks. As soon as we need this behaviour after we build a newer patch though, we will have problems. So, let's change the policy. Patches are relative to where tarballs are extracted, rather than the "working directory" - e.g. have patches for `coreutils-9.4/src/cp.c` instead of `src/cp.c`. Keeping this consistent has a few implications; - patches are applied from the build/ directory in bash era now, with `-p0` - when patches are manually applied in the bash era, use `-p` as required, usually `-p1` - in kaem era where patches are always manually applied, `-p1` is used
62 lines
1.3 KiB
Bash
Executable file
62 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
# SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -ex
|
|
|
|
# Check tarball checksums
|
|
checksum-transcriber sources
|
|
sha256sum -c sources.SHA256SUM
|
|
|
|
mkdir build src
|
|
cd build
|
|
|
|
# Extract
|
|
cp ${DISTFILES}/${pkg}.tar.bz2 ../src/
|
|
bzip2 -d -f ../src/${pkg}.tar.bz2
|
|
tar xf ../src/${pkg}.tar
|
|
rm -r ../src/
|
|
cd ${pkg}
|
|
cp ../../mk/main.mk Makefile
|
|
cp ../../mk/builtins.mk builtins/Makefile
|
|
cp ../../mk/common.mk common.mk
|
|
|
|
# Create various .h files
|
|
touch config.h
|
|
touch include/version.h
|
|
touch include/pipesize.h
|
|
rm y.tab.c y.tab.h
|
|
|
|
# Patch
|
|
patch -Np1 -i ../../patches/mes-libc.patch
|
|
patch -Np1 -i ../../patches/tinycc.patch
|
|
patch -Np1 -i ../../patches/missing-defines.patch
|
|
patch -Np1 -i ../../patches/locale.patch
|
|
patch -Np1 -i ../../patches/dev-tty.patch
|
|
|
|
# Compile
|
|
make mkbuiltins
|
|
cd builtins
|
|
make libbuiltins.a
|
|
cd ..
|
|
make
|
|
|
|
# Install
|
|
install bash ${PREFIX}/bin/
|
|
install bash ${PREFIX}/bin/sh
|
|
|
|
cd ../..
|
|
|
|
# Checksums
|
|
if match x${UPDATE_CHECKSUMS} xTrue; then
|
|
sha256sum -o ${pkg}.checksums \
|
|
/usr/bin/bash
|
|
|
|
install ${pkg}.checksums ${SRCDIR}
|
|
else
|
|
sha256sum -c ${pkg}.checksums
|
|
fi
|