update to 12.4-systemd: gperf-3.3

This commit is contained in:
2025-12-21 18:26:33 -05:00
parent 3668e8f08d
commit 7302959a62

26
lfs/gperf-3.3.PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
pkgname=gperf
pkgver=3.3
pkgdesc="Perfect hash function generator"
homepage="https://www.gnu.org/software/gperf/"
license=('GPL-3.0-or-later')
sources=("${pkgname}-${pkgver}.tar.gz")
urls=("https://ftp.gnu.org/gnu/${pkgname}/${sources[0]}")
md5sums=("31753b021ea78a21f154bf9eecb8b079")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr --docdir=/usr/share/doc/${pkgname}-${pkgver}
make
}
src_check() {
make -j1 check
}
src_install() {
make DESTDIR="${pkgdir}" install
}