0.3.1 fix qt5 build, exception docs

This commit is contained in:
Blue 2023-04-14 11:44:46 -03:00
parent 2b4763b575
commit 4975721a5c
Signed by: blue
GPG key ID: 9B203B252A63EE38
5 changed files with 111 additions and 22 deletions

View file

@ -1,6 +1,6 @@
# Maintainer: Yury Gubich <blue@macaw.me>
pkgname=lmdbal
pkgver=0.3.0
pkgver=0.3.1
pkgrel=1
pkgdesc="LMDB Abstraction Layer, qt5 version"
arch=('i686' 'x86_64')
@ -11,7 +11,7 @@ makedepends=('cmake>=3.16')
optdepends=()
source=("$pkgname-$pkgver.tar.gz::https://git.macaw.me/blue/lmdbal/archive/$pkgver.tar.gz")
sha256sums=('SKIP')
sha256sums=('df1a9687d81d609d160754285f2613d7e07fc6deb781d0fb0084e4857ea82e95')
build() {
cd "$srcdir/$pkgname"
cmake . -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D QT_VERSION_MAJOR=5
@ -19,5 +19,5 @@ build() {
}
package() {
cd "$srcdir/$pkgname"
cmake --install . --prefix $pkgdir/
DESTDIR="$pkgdir/" cmake --install .
}