mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
recompile tar and add gzip 1.12 for V1.0 roadmap Update parts.rst to add tar 1.34 pass 2 and gzip 1.12 Corrected Gzip CRC
23 lines
409 B
Bash
Executable file
23 lines
409 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
|
|
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
ssrc_prepare() {
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
./configure --prefix=/usr
|
|
}
|
|
|
|
src_compile() {
|
|
make "${MAKEJOBS}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
}
|