mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
22 lines
573 B
Bash
22 lines
573 B
Bash
pkgname=libspatialite
|
|
pkgver=4.3.0a
|
|
pkgrel=3
|
|
pkgdesc="SQLite extension to support spatial data types and operations"
|
|
arch=('x86_64')
|
|
url="https://www.gaia-gis.it/fossil/libspatialite/index"
|
|
license=('MPL')
|
|
depends=('geos' 'proj' 'sqlite' 'freexl')
|
|
source=("http://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('6b380b332c00da6f76f432b10a1a338c')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --enable-geosadvanced --enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|