blob: b61d0f3859007d794300145edbdce9a2173ff2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Yury Gubich <blue@macaw.me>
pkgname=lmdbal-qt5
pkgver=0.5.4
pkgrel=4
pkgdesc="LMDB Abstraction Layer, qt5 version"
arch=('i686' 'x86_64')
url="https://git.macaw.me/blue/lmdbal"
license=('GPL3')
depends=( 'lmdb' qt5-base )
makedepends=('cmake>=3.16' 'gcc')
optdepends=()
source=("lmdbal-$pkgver.tar.gz::https://git.macaw.me/blue/lmdbal/archive/$pkgver.tar.gz")
sha256sums=('da87ad058096f1f912f5af27552fb7732f769e394ff89919798455ad52f37261')
build() {
cd "$srcdir/lmdbal"
cmake . -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D QT_VERSION_MAJOR=5 -D LMDBAL_NAME=LMDBALQT5
cmake --build .
}
package() {
cd "$srcdir/lmdbal"
DESTDIR="$pkgdir/" cmake --install .
}
|