patch: update to 2.8

This commit is contained in:
Samuel Tyler 2025-12-28 11:58:35 +11:00
parent de28a97756
commit 3ef14c9a59
No known key found for this signature in database
GPG key ID: EB5091A5C77E8DC4
7 changed files with 126 additions and 80 deletions

25
steps/patch-2.8/pass1.sh Executable file
View file

@ -0,0 +1,25 @@
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
rm lib/unictype/ctype_print.h
../../import-gnulib.sh
# bison
rm lib/parse-datetime.c
autoreconf -fi
}
src_configure() {
./configure --prefix="${PREFIX}"
}
src_compile() {
make "${MAKEJOBS}" MAKEINFO=true
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}