mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
added libspatialite (needed for qgis)
This commit is contained in:
parent
c5abe70b08
commit
801dfafd59
27
libspatialite/PKGBUILD
Normal file
27
libspatialite/PKGBUILD
Normal file
@ -0,0 +1,27 @@
|
||||
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
||||
# Contributor: Brian Galey <bkgaley at gmail dot com>
|
||||
# Contributor: Pietro Zambelli <peter.zamb at gmail dot com>
|
||||
pkgname=libspatialite
|
||||
pkgver=3.0.1
|
||||
pkgrel=1
|
||||
pkgdesc="SQLite extension to support spatial data types and operations"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://www.gaia-gis.it/fossil/libspatialite/index"
|
||||
license=('MPL')
|
||||
depends=('geos' 'proj' 'sqlite3' 'libfreexl')
|
||||
options=('!libtool')
|
||||
source=("http://www.gaia-gis.it/gaia-sins/libspatialite-3.0.1.tar.gz")
|
||||
md5sums=('450d1a0d9da1bd9f770b7db3f2509f69')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
# we need to disable geosadvanced, because geos is outdated (needs >=3.3.0)
|
||||
./configure --prefix=/usr --disable-geosadvanced
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user