mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-16 00:05:24 +01:00
- Rather than defining the urls where they are gotten (python sysa, python sysc, inside sysc), a spec file is now used that is easily interpretable and tool-independent. - This is interpreted by rootfs.py and inside sysc. - This is also used to make sources available and extract sources. - Manual dirname selection is no longer required as is tarball renaming upon download - all of this is handled automatically. Fixes #188
34 lines
965 B
Bash
Executable file
34 lines
965 B
Bash
Executable file
# SPDX-FileCopyrightText: 2022 Dor Askayo <dor.askayo@gmail.com>
|
|
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_configure() {
|
|
./configure \
|
|
--host=i386-unknown-linux-musl \
|
|
--prefix="${PREFIX}" \
|
|
--libdir="${PREFIX}/lib/musl" \
|
|
--includedir="${PREFIX}/include/"
|
|
}
|
|
|
|
src_compile() {
|
|
make CROSS_COMPILE=
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# Make dynamic linker symlink relative in ${PREFIX}/lib
|
|
rm "${DESTDIR}/lib/ld-musl-i386.so.1"
|
|
rmdir "${DESTDIR}/lib"
|
|
mkdir -p "${DESTDIR}${PREFIX}/lib"
|
|
ln -sr "${DESTDIR}${PREFIX}/lib/musl/libc.so" "${DESTDIR}${PREFIX}/lib/ld-musl-i386.so.1"
|
|
|
|
# Add symlink for ldd
|
|
mkdir -p "${DESTDIR}${PREFIX}/bin"
|
|
ln -s ../lib/ld-musl-i386.so.1 "${DESTDIR}${PREFIX}/bin/ldd"
|
|
|
|
# Add library search path configurtion
|
|
mkdir -p "${DESTDIR}/etc"
|
|
cp ../../ld-musl-i386.path "${DESTDIR}/etc"
|
|
}
|