flann: new package

[Thomas: changed license from BSD to BSD-3c, to be more specific.]

Signed-off-by: Davide Viti <zinosat@tiscali.it>
CC: minimod@morethan.org
CC: patrickdepinguin@gmail.com
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Davide Viti 2014-04-15 22:50:05 +02:00 committed by Thomas Petazzoni
parent b782798c15
commit 5fefbceeb6
3 changed files with 48 additions and 0 deletions

View File

@ -773,6 +773,7 @@ source "package/cppcms/Config.in"
source "package/eigen/Config.in"
source "package/elfutils/Config.in"
source "package/fftw/Config.in"
source "package/flann/Config.in"
source "package/glibmm/Config.in"
source "package/gmp/Config.in"
source "package/gsl/Config.in"

24
package/flann/Config.in Normal file
View File

@ -0,0 +1,24 @@
config BR2_PACKAGE_FLANN
bool "flann"
depends on BR2_INSTALL_LIBSTDCPP
help
FLANN is a library for performing fast approximate nearest
neighbor searches in high dimensional spaces. It contains a
collection of algorithms we found to work best for nearest
neighbor search and a system for automatically choosing the
best algorithm and optimum parameters depending on the
dataset.
http://www.cs.ubc.ca/research/flann/
if BR2_PACKAGE_FLANN
config BR2_PACKAGE_FLANN_EXAMPLES
bool "flann examples"
help
Build and install flann example applications.
endif
comment "flann needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

23
package/flann/flann.mk Normal file
View File

@ -0,0 +1,23 @@
###############################################################################
#
# flann
#
###############################################################################
FLANN_VERSION = d0c04f4d290ebc3aa9411a3322992d298e51f5aa
FLANN_SITE = $(call github,mariusmuja,flann,$(FLANN_VERSION))
FLANN_INSTALL_STAGING = YES
FLANN_LICENSE = BSD-3c
FLANN_LICENSE_FILES = COPYING
FLANN_CONF_OPT = \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_C_BINDINGS=ON \
-DBUILD_PYTHON_BINDINGS=OFF \
-DBUILD_MATLAB_BINDINGS=OFF \
-DBUILD_EXAMPLES=$(if $(BR2_PACKAGE_FLANN_EXAMPLES),ON,OFF) \
-DBUILD_TESTS=OFF \
-DBUILD_DOC=OFF \
-DUSE_OPENMP=$(if $(BR2_GCC_ENABLE_OPENMP),ON,OFF) \
-DPYTHON_EXECUTABLE=OFF
$(eval $(cmake-package))