packages/lmdb/PKGBUILD
2024-09-30 13:49:41 +02:00

44 lines
1.3 KiB
Bash

# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Matt Monaco <cx monaco matt>
pkgname=lmdb
pkgver=0.9.33
pkgrel=1
pkgdesc="Symas Lightning Memory-Mapped Database"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://symas.com/lmdb"
license=('custom:OpenLDAP')
depends=('glibc')
makedepends=('git')
options=('!emptydirs')
source=("git+https://git.openldap.org/openldap/openldap.git#tag=LMDB_$pkgver"
lmdb.pc)
sha512sums=('dad9b7fa441d02202131e911aa3b6aad09c98c6e972ae69adf2867ccce2065397d868751bf93a4e00b13a3165ffd33bff33f36a062c1a6467a5543367efb381d'
'0349d4b08a1f93fe338d8f8e3e5a83e24211a46f999fe529bc1ac49c8c4975559d95a548c203d9427e3f82d62e934ba3cd1be6f734f9b9405b2a26477be4ed33')
prepare() {
sed -e "s|@PKGVER@|$pkgver|" -i lmdb.pc
}
build() {
cd openldap/libraries/liblmdb
make CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" prefix=/usr
}
check() {
cd openldap/libraries/liblmdb
make test
}
package() {
cd openldap/libraries/liblmdb
install -dm755 "$pkgdir"/usr/{bin,lib,include,man/man1,share}
make DESTDIR="$pkgdir" prefix=/usr install
mv "$pkgdir"/usr/man "$pkgdir"/usr/share/man
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
install -Dm644 "$srcdir"/lmdb.pc -t "$pkgdir"/usr/lib/pkgconfig/
}