mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 05:47:14 +08:00
33 lines
808 B
Bash
33 lines
808 B
Bash
|
#Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
||
|
# Contributor: Lantald <lantald at Gmx dot com>
|
||
|
pkgname=spatialindex
|
||
|
pkgver=1.7.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="An extensible framework that supports robust spatial indexing methods and sophisticated spatial queries."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://libspatialindex.github.com/"
|
||
|
license=('(L)GPL')
|
||
|
depends=(gcc-libs)
|
||
|
provides=(spatialindex)
|
||
|
conflicts=("libspatialindex-git")
|
||
|
source=("http://download.osgeo.org/libspatialindex/$pkgname-src-$pkgver.tar.gz")
|
||
|
md5sums=('8599243d5d8204f0f8d92cd55ab120f5')
|
||
|
|
||
|
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
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|