pkgsrc/geography/spatialindex/Makefile
adam 4b5cd3ace0 The purpose of this library is to provide:
* An extensible framework that will support robust spatial indexing methods.
* Support for sophisticated spatial queries. Range, point location, nearest
  neighbor and k-nearest neighbor as well as parametric queries (defined by
  spatial constraints) should be easy to deploy and run.
* Easy to use interfaces for inserting, deleting and updating information.
* Wide variety of customization capabilities. Basic index and storage
  characteristics like the page size, node capacity, minimum fan-out, splitting
  algorithm, etc. should be easy to customize.
* Index persistence. Internal memory and external memory structures should be
  supported. Clustered and non-clustered indices should be easy to be persisted.
2015-11-27 17:51:58 +00:00

19 lines
498 B
Makefile

# $NetBSD: Makefile,v 1.1 2015/11/27 17:51:58 adam Exp $
DISTNAME= spatialindex-src-1.8.5
PKGNAME= ${DISTNAME:S/-src//}
CATEGORIES= geography
MASTER_SITES= http://download.osgeo.org/libspatialindex/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://libspatialindex.github.io/
COMMENT= Robust spatial indexing methods
LICENSE= mit
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE= src/libspatialindex.pc.in
.include "../../mk/bsd.pkg.mk"