live-bootstrap/steps/coreutils-9.4/pass1.sh

57 lines
1.9 KiB
Bash
Raw Normal View History

2021-05-18 12:37:21 +01:00
# SPDX-FileCopyrightText: 2021 Melg Eight <public.melg8@gmail.com>
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
2023-12-29 00:53:31 +00:00
# SPDX-FileCopyrightText: 2023 fosslinux <fosslinux@aussies.space>
2021-05-18 12:37:21 +01:00
#
# SPDX-License-Identifier: GPL-3.0-or-later
regenerate_files() {
build-aux/gen-lists-of-programs.sh --autoconf > m4/cu-progs.m4
build-aux/gen-lists-of-programs.sh --automake > src/cu-progs.mk
build-aux/gen-single-binary.sh src/local.mk > src/single-binary.mk
touch ChangeLog
2023-12-29 00:53:31 +00:00
cp ../gnulib-bb5bb43/build-aux/po/Makefile.in.in po/Makefile.in.in
2021-05-18 12:37:21 +01:00
2023-12-29 00:53:31 +00:00
# Remove pregenerated gnulib files
pushd ../gnulib-bb5bb43
rm lib/uniwidth/width*.h
rm lib/unictype/ctype*.h
rm lib/unicase/tolower.h
popd
2021-05-18 12:37:21 +01:00
2023-12-29 00:53:31 +00:00
. ../../import-gnulib.sh
2021-05-18 12:37:21 +01:00
2022-05-09 19:55:26 +01:00
VERSION=$(basename "${BASH_SOURCE[0]}" .sh | sed 's/coreutils-//')
echo "$VERSION" > .tarball-version
2021-05-18 12:37:21 +01:00
# We don't have autopoint from gettext yet.
2022-07-07 20:43:39 +01:00
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
2021-05-18 12:37:21 +01:00
}
src_prepare() {
default
regenerate_files
}
src_configure() {
# FORCE_UNSAFE_CONFIGURE disables "you should not run configure as root"
# error from configuration system of coreutils.
# gl_cv_func_getcwd_path_max is set to improve reproducibility.
# In some environments, the configure script would set it to
# "no, but it is partly working", and in others it would set it
# to "yes", producing different build outputs.
2023-12-29 00:53:31 +00:00
# Also, tell coreutils we don't have perl, which disables help2man
2021-05-18 12:37:21 +01:00
FORCE_UNSAFE_CONFIGURE=1 ./configure CFLAGS="-static" \
--prefix="${PREFIX}" \
--build=i386-unknown-linux-musl \
2023-12-29 00:53:31 +00:00
gl_cv_func_getcwd_path_max="no, but it is partly working" \
gl_cv_prog_perl="no"
2021-05-18 12:37:21 +01:00
}
src_compile() {
2023-12-29 00:53:31 +00:00
make "${MAKEJOBS}" PREFIX="${PREFIX}" MAKEINFO="true" GPERF="true"
2021-05-18 12:37:21 +01:00
}
src_install() {
make install PREFIX="${PREFIX}" MAKEINFO="true" DESTDIR="${DESTDIR}"
}