mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 11:06:32 +01:00
LIBDIR should be used where possible to avoid unnecessary duplication in build scripts that target the musl toolchain. No change in package hashes.
68 lines
1.9 KiB
Bash
Executable file
68 lines
1.9 KiB
Bash
Executable file
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
noextract="autogen-5.18.16.tar.xz"
|
|
|
|
src_prepare() {
|
|
mkdir build
|
|
mv ../autogen-5.18.16 build/src
|
|
mv ../autogen-5.18.16.tar.xz build/
|
|
rm -f build/src/add-on/char-mapper/cm.tar
|
|
}
|
|
|
|
src_compile() {
|
|
(
|
|
set -e
|
|
export PKG_CONFIG_PATH="${LIBDIR}/pkgconfig"
|
|
sed -i "s/make install/make install DESTDIR=\${DESTDIR}/" bootstrap_tarball.sh
|
|
sed -i "/make check/d" bootstrap_tarball.sh
|
|
export FINALPREFIX="${PREFIX}"
|
|
export GUILE_STATIC="--static"
|
|
export GNULIBDIR="${PWD}"/../gnulib-8f4538a5
|
|
export MAN_PAGE_DATE=1970-01-01
|
|
|
|
SKIP_MAIN=1 . ./bootstrap_tarball.sh
|
|
prepare_tarball
|
|
bootstrap_columns
|
|
bootstrap_getdefs
|
|
bootstrap_autogen
|
|
bootstrap_tpl_config
|
|
|
|
# Build stage2 autogen (stage1 autogen is not easy to install into /usr)
|
|
rm -R build/tarball
|
|
cp -ar build/autogen-5.18.16 build/tarball
|
|
cd build/tarball
|
|
|
|
# These files does not respect MAN_PAGE_DATE
|
|
sed -i "s/+%Y/+1970/; s/%m/01/; s/%d'/01'/; s/%Y/2018/" autoopts/aoconf.tpl
|
|
sed -i 's/%Y/2018/' autoopts/options_h.tpl
|
|
|
|
SOURCE_DIR="$PWD" ./config/bootstrap
|
|
# Specify timeout to avoid non-reproducibility
|
|
./configure \
|
|
--prefix="${FINALPREFIX}" \
|
|
--libdir="${FINALPREFIX}/lib/musl" \
|
|
--disable-shared \
|
|
--enable-timeout=15
|
|
touch doc/agdoc.texi # build later
|
|
make CFLAGS=-Wno-error
|
|
|
|
# Fix non-reproducible man-page
|
|
awk '{gsub("\\(/tmp/.*", "", $7); print}' agen5/autogen.1 > autogen.1
|
|
mv autogen.1 agen5/autogen.1
|
|
|
|
cd ../..
|
|
)
|
|
}
|
|
|
|
src_install() {
|
|
cd build/tarball
|
|
make DESTDIR="${DESTDIR}" install MAN_PAGE_DATE=1970-01-01
|
|
|
|
# Some reproducibility issues and generally not useful for bootstrapping
|
|
rm "${DESTDIR}${PREFIX}/share/autogen/libopts-"*.tar.gz
|
|
|
|
cd ../..
|
|
}
|