update: rename lfs-12.2 to lfs

This commit is contained in:
wyj
2025-03-14 01:33:44 -04:00
parent 02fd8b18b8
commit a4b9b9fdc5
56 changed files with 0 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
pkgname=gdbm
pkgver=1.24
pkgdesc="GNU database library"
homepage="https://www.gnu.org/software/gdbm"
license=(GPL-3.0-or-later)
sources=("${pkgname}-${pkgver}.tar.gz")
urls=("https://ftp.gnu.org/gnu/${pkgname}/${sources[0]}")
md5sums=("c780815649e52317be48331c1773e987")
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr \
--disable-static \
--enable-libgdbm-compat
make
}
src_check() {
make check
}
src_install() {
make DESTDIR="${pkgdir}" install
}