]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/libspatialindex: new package
authorRomain Naour <romain.naour@gmail.com>
Mon, 12 Jun 2017 20:53:59 +0000 (22:53 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 12 Jun 2017 21:43:41 +0000 (23:43 +0200)
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
DEVELOPERS
package/Config.in
package/libspatialindex/Config.in [new file with mode: 0644]
package/libspatialindex/libspatialindex.hash [new file with mode: 0644]
package/libspatialindex/libspatialindex.mk [new file with mode: 0644]

index 8939987088d035c6567b13307ad4590bfc3d9ab0..9a11f8bf832be2788bb9dd18cd6fc22bff39e85c 100644 (file)
@@ -1388,6 +1388,7 @@ F:        package/expedite/
 F:     package/iqvlinux/
 F:     package/liblinear/
 F:     package/lensfun/
+F:     package/libspatialindex/
 F:     package/linux-syscall-support/
 F:     package/lugaru/
 F:     package/mcelog/
index 3a99c86db32184fac8852c88332c4390d6c93b54..1a2dade376e050e73da2db4deb12e733d1a92451 100644 (file)
@@ -1408,6 +1408,7 @@ menu "Other"
        source "package/libseccomp/Config.in"
        source "package/libsigc/Config.in"
        source "package/libsigsegv/Config.in"
+       source "package/libspatialindex/Config.in"
        source "package/libtasn1/Config.in"
        source "package/libtommath/Config.in"
        source "package/libtpl/Config.in"
diff --git a/package/libspatialindex/Config.in b/package/libspatialindex/Config.in
new file mode 100644 (file)
index 0000000..0d066f6
--- /dev/null
@@ -0,0 +1,30 @@
+config BR2_PACKAGE_LIBSPATIALINDEX
+       bool "libspatialindex"
+       depends on BR2_INSTALL_LIBSTDCPP
+       help
+         The purpose of libspatialindex 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.
+
+         https://libspatialindex.github.io
+
+comment "libspatialindex needs a toolchain w/ C++"
+       depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/libspatialindex/libspatialindex.hash b/package/libspatialindex/libspatialindex.hash
new file mode 100644 (file)
index 0000000..3aa636d
--- /dev/null
@@ -0,0 +1,4 @@
+# From http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.5.tar.bz2.md5
+md5 3303c47fd85aa17e64ef52ebec212762 spatialindex-src-1.8.5.tar.bz2
+# Locally computed
+sha256 31ec0a9305c3bd6b4ad60a5261cba5402366dd7d1969a8846099717778e9a50a spatialindex-src-1.8.5.tar.bz2
diff --git a/package/libspatialindex/libspatialindex.mk b/package/libspatialindex/libspatialindex.mk
new file mode 100644 (file)
index 0000000..d815364
--- /dev/null
@@ -0,0 +1,14 @@
+################################################################################
+#
+# libspatialindex
+#
+################################################################################
+
+LIBSPATIALINDEX_VERSION = 1.8.5
+LIBSPATIALINDEX_SITE = http://download.osgeo.org/libspatialindex
+LIBSPATIALINDEX_SOURCE = spatialindex-src-$(LIBSPATIALINDEX_VERSION).tar.bz2
+LIBSPATIALINDEX_INSTALL_STAGING = YES
+LIBSPATIALINDEX_LICENSE = MIT
+LIBSPATIALINDEX_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))