mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-14 07:15:24 +01:00
Variety of improvements
- 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.
This commit is contained in:
parent
acf713595c
commit
f1600467a7
48 changed files with 130 additions and 138 deletions
|
|
@ -1,19 +1,17 @@
|
|||
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
# SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
|
||||
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_unpack() {
|
||||
mkdir "${pkg}"
|
||||
mv /sources/deblob-4.9 "${pkg}/"
|
||||
mv "/sources/${pkg}.tar.gz" .
|
||||
mv "${DISTFILES}/deblob-4.9" "${pkg}/"
|
||||
# Remove all previous source tarballs
|
||||
rm /sources/*
|
||||
mv ${pkg}.tar.gz /sources
|
||||
mv "${DISTFILES}/${pkg}.tar.gz" .
|
||||
rm -r "${DISTFILES}/"*
|
||||
mv "${pkg}.tar.gz" "${DISTFILES}"
|
||||
default || true # Predictable link errors - not a problem
|
||||
|
||||
# Clear up storage space
|
||||
rm -rf "/sources/${pkg}.tar.gz"
|
||||
rm -r "${DISTFILES}" # Clear storage space
|
||||
}
|
||||
|
||||
generate_autoconf_h() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue