4b5cd3ace0
* 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.
12 lines
354 B
Makefile
12 lines
354 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2015/11/27 17:51:58 adam Exp $
|
|
|
|
BUILDLINK_TREE+= spatialindex
|
|
|
|
.if !defined(SPATIALINDEX_BUILDLINK3_MK)
|
|
SPATIALINDEX_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.spatialindex+= spatialindex>=1.8.5
|
|
BUILDLINK_PKGSRCDIR.spatialindex?= ../../geography/spatialindex
|
|
.endif # SPATIALINDEX_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -spatialindex
|