mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-14 23:35:24 +01:00
Add make 3.82 (sysa)
This commit is contained in:
parent
b93a931a53
commit
1e19193408
5 changed files with 38 additions and 8 deletions
27
sysa/make-3.82/make-3.82.sh
Executable file
27
sysa/make-3.82/make-3.82.sh
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
rm doc/make.info
|
||||
touch doc/make.info
|
||||
|
||||
# We don't have autopoint from gettext yet
|
||||
AUTOPOINT=true autoreconf -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
./configure \
|
||||
--prefix="${PREFIX}" \
|
||||
--disable-nls
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make MAKEINFO="true"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make install MAKEINFO="true" DESTDIR="${DESTDIR}"
|
||||
}
|
||||
12
sysa/run.sh
12
sysa/run.sh
|
|
@ -13,7 +13,7 @@ set -e
|
|||
|
||||
export PREFIX=/usr
|
||||
export SOURCES=/after
|
||||
mkdir "${PREFIX}/sbin"
|
||||
mkdir -p "${PREFIX}/sbin"
|
||||
export PATH="${PREFIX}/bin:${PREFIX}/sbin"
|
||||
|
||||
populate_device_nodes() {
|
||||
|
|
@ -175,13 +175,15 @@ build musl-1.2.2
|
|||
|
||||
build gcc-4.0.4 pass2.sh checksums/pass2
|
||||
|
||||
build util-linux-2.19.1
|
||||
|
||||
build kbd-1.15
|
||||
|
||||
build make-3.82
|
||||
|
||||
if [ "${CHROOT}" = False ]; then
|
||||
build util-linux-2.19.1
|
||||
|
||||
build kexec-tools-2.0.22
|
||||
|
||||
build kbd-1.15
|
||||
|
||||
create_sysb
|
||||
|
||||
build linux-2.6.16.62
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue