mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
30 lines
717 B
Bash
30 lines
717 B
Bash
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
|
# Contributor: Lantald <lantald at Gmx dot com>
|
|
pkgname=spatialindex
|
|
pkgver=1.8.1
|
|
pkgrel=1
|
|
pkgdesc="An extensible framework that supports robust spatial indexing methods and sophisticated spatial queries."
|
|
arch=('x86_64')
|
|
url="http://libspatialindex.github.com/"
|
|
license=('MIT')
|
|
depends=(gcc-libs)
|
|
source=("http://download.osgeo.org/libspatialindex/$pkgname-src-$pkgver.tar.gz")
|
|
md5sums=('29fb6ac7b23748816cdbd128b0be4e85')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-src-$pkgver/"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/$pkgname-src-$pkgver/"
|
|
make -k check
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-src-$pkgver/"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|