Update gperf

This commit is contained in:
Samuel Tyler 2026-01-01 17:01:53 +11:00
parent 59e5a4341a
commit e4689a9467
No known key found for this signature in database
GPG key ID: EB5091A5C77E8DC4
7 changed files with 35 additions and 13 deletions

View file

@ -1,27 +0,0 @@
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
find . -name '*.info*' -delete -exec touch {} +
for d in doc tests lib src; do
cd $d
ln -s ../aclocal.m4 aclocal.m4
autoreconf-2.71 -fi
cd ..
done
autoreconf-2.71 -fi
}
src_configure() {
./configure --prefix="${PREFIX}"
}
src_compile() {
make "${MAKEJOBS}" MAKEINFO=true PREFIX="${PREFIX}"
}
src_install() {
make MAKEINFO=true PREFIX="${PREFIX}" DESTDIR="${DESTDIR}" install
}