Date: Monday, February 3, 2020 @ 21:21:39 Author: foxboron Revision: 561991
upgpkg: sqlite-replication 3.30.1.4-1 Saner package versioning including the patch set version Modified: sqlite-replication/trunk/PKGBUILD ----------+ PKGBUILD | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-02-03 21:19:31 UTC (rev 561990) +++ PKGBUILD 2020-02-03 21:21:39 UTC (rev 561991) @@ -1,11 +1,13 @@ -# Maintainer: Thomas Hipp <thomashipp at gmail dot com> -# Maintainer: Andreas Radke <[email protected]> +# Maintainer: Morten Linderud <[email protected]> +# Contributor: Thomas Hipp <thomashipp at gmail dot com> +# Contributor: Andreas Radke <[email protected]> # Contributor: Tom Newsom <[email protected]> pkgname="sqlite-replication" -pkgver=3.30.1 -pkgrel=2 -_replication=4 +pkgver=3.30.1.4 +pkgrel=1 +_pkgver="${pkgver%.*}" +_replication="${pkgver##*.}" pkgdesc="Replication Enabled SQL Database Engine in a C Library" arch=('x86_64') license=('custom:Public Domain') @@ -12,7 +14,7 @@ url="https://github.com/canonical/sqlite" depends=('readline' 'zlib') makedepends=('tcl') -source=("https://github.com/canonical/sqlite/archive/version-${pkgver}+replication${_replication}.tar.gz" +source=("https://github.com/canonical/sqlite/archive/version-${_pkgver}+replication${_replication}.tar.gz" license.txt) sha256sums=('e9ab0542396be10e1b2951423f13b3e4d118a18e5d4ef39dc271e7dd17d3910f' '4e57d9ac979f1c9872e69799c2597eeef4c6ce7224f3ede0bf9dc8d217b1e65d') @@ -27,7 +29,7 @@ -DSQLITE_MAX_EXPR_DEPTH=10000" # build sqlite - cd sqlite-version-${pkgver}-replication${_replication} + cd sqlite-version-${_pkgver}-replication${_replication} ./configure --prefix=/usr \ --libdir=/usr/lib/$pkgname \ --includedir=/usr/include/$pkgname \ @@ -43,7 +45,7 @@ } package() { - cd sqlite-version-${pkgver}-replication${_replication} + cd sqlite-version-${_pkgver}-replication${_replication} make DESTDIR="${pkgdir}" install install -D -m644 "${srcdir}/license.txt" "${pkgdir}/usr/share/licenses/${pkgbase}/license.txt"
