Date: Monday, June 27, 2022 @ 16:17:18 Author: archange Revision: 1239715
proj 9.0 rebuild Modified: libspatialite/trunk/PKGBUILD ----------+ PKGBUILD | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-06-27 16:12:47 UTC (rev 1239714) +++ PKGBUILD 2022-06-27 16:17:18 UTC (rev 1239715) @@ -1,25 +1,26 @@ # Maintainer: Jaroslav Lichtblau <[email protected]> +# Maintainer: Bruno Pagani <[email protected]> # Contributor: Brian Galey <bkgaley at gmail dot com> # Contributor: Pietro Zambelli <peter.zamb at gmail dot com> pkgname=libspatialite pkgver=5.0.1 -pkgrel=2 +pkgrel=3 pkgdesc="SQLite extension to support spatial data types and operations" -arch=('x86_64') +arch=(x86_64) url="https://www.gaia-gis.it/fossil/libspatialite" -license=('MPL' 'GPL' 'LGPL') -depends=('geos' 'libfreexl' 'librttopo' 'libxml2' 'minizip' 'proj' 'sqlite') +license=(MPL GPL LGPL) +depends=(geos libfreexl librttopo libxml2 minizip proj sqlite) source=(https://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz) sha256sums=('eecbc94311c78012d059ebc0fae86ea5ef6eecb13303e6e82b3753c1b3409e98') build() { - cd "${srcdir}"/$pkgname-$pkgver + cd $pkgname-$pkgver ./configure --prefix=/usr make } package() { - cd "${srcdir}"/$pkgname-$pkgver + cd $pkgname-$pkgver make DESTDIR="${pkgdir}" install }
