summaryrefslogtreecommitdiff
path: root/pcr/libspatialite/PKGBUILD
blob: 24c775fd8490eddfe884d92651b5b31fc59d2719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Brian Galey <bkgaley at gmail dot com>
# Contributor: Pietro Zambelli <peter.zamb at gmail dot com>
pkgname=libspatialite
pkgver=4.0.0
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/$pkgname-$pkgver.tar.gz")
md5sums=('8040ce4e39913e7d284675c0f15d270d')

build() {
    cd "$srcdir/$pkgname-$pkgver"
    ./configure --prefix=/usr
    make
}

package() {
    cd "$srcdir/$pkgname-$pkgver"
    make DESTDIR="$pkgdir/" install
}