# SPDX-FileCopyrightText: 2022 Andrius Štikonas # SPDX-FileCopyrightText: 2022,2025 Samuel Tyler # # SPDX-License-Identifier: GPL-3.0-or-later src_prepare() { # technically lib/gnulib-version.c is also generated, but it's entirely # unproblematic . ../../import-gnulib.sh default AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.61 AUTOCONF=autoconf-2.61 autoreconf-2.61 -f # Pre-built files rm doc/find.info rm po/*.gmo } src_configure() { # Musl is not recognized, pretend to be uClibc # Must use --host for config.charset reproducibility CC=tcc ./configure --prefix="${PREFIX}" \ --host="${TARGET/-musl/-gnu}" \ CPPFLAGS="-D__UCLIBC__" } src_compile() { make "${MAKEJOBS}" MAKEINFO=true DESTDIR="${DESTDIR}" } src_install() { make MAKEINFO=true DESTDIR="${DESTDIR}" install }