* update dqlite to 1.16.7-2

This commit is contained in:
Alexander Baldeck 2024-11-17 09:55:50 +01:00
parent 907139f8a9
commit 02df64c4b3
2 changed files with 6 additions and 8 deletions

View File

@ -1,19 +1,18 @@
pkgbase = dqlite
pkgdesc = Distributed SQLite
pkgver = 1.16.7
pkgrel = 1
pkgrel = 2
url = https://github.com/CanonicalLtd/dqlite
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
license = LGPL3
license = LGPL-3.0-only
makedepends = tcl
makedepends = readline
makedepends = zlib
depends = libuv
depends = raft
depends = sqlite
options = strip
source = dqlite-1.16.7.tar.gz::https://github.com/canonical/dqlite/archive/v1.16.7.tar.gz

View File

@ -1,15 +1,14 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Morten Linderud <foxboron@archlinux.org>
# Contributor: Thomas Hipp <thomashipp at gmail dot com>
pkgname=dqlite
pkgver=1.16.7
pkgrel=1
pkgrel=2
pkgdesc="Distributed SQLite"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://github.com/CanonicalLtd/dqlite"
license=('LGPL3')
depends=('libuv' 'raft' 'sqlite')
license=('LGPL-3.0-only')
depends=('libuv' 'sqlite')
makedepends=('tcl' 'readline' 'zlib')
options=(strip)
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz")
@ -19,7 +18,7 @@ build() {
cd "$pkgname-$pkgver"
autoreconf -i
#PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure --prefix=/usr
./configure --prefix=/usr
./configure --prefix=/usr --enable-build-raft
make
}