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.
21 lines
613 B
Bash
Executable file
21 lines
613 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
|
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
:
|
|
}
|
|
|
|
src_compile() {
|
|
make CC=tcc AR="tcc -ar" bzip2
|
|
}
|
|
|
|
src_install() {
|
|
# Manually install bzip2 (cannot replace binary while running)
|
|
install -D bzip2 ${PREFIX}/bin/bzip2
|
|
mkdir -p ${DESTDIR}${PREFIX}/bin
|
|
ln -sf ${PREFIX}/bin/bzip2 ${DESTDIR}${PREFIX}/bin/bunzip2
|
|
ln -sf ${PREFIX}/bin/bzip2 ${DESTDIR}${PREFIX}/bin/bzcat
|
|
}
|