Commit ebff54e5 authored by Davide Viti's avatar Davide Viti Committed by Thomas Petazzoni
Browse files

qhull: new package

parent 57a283ac
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -820,6 +820,7 @@ source "package/p11-kit/Config.in"
source "package/poco/Config.in"
source "package/protobuf/Config.in"
source "package/protobuf-c/Config.in"
source "package/qhull/Config.in"
source "package/schifra/Config.in"
source "package/startup-notification/Config.in"
source "package/tz/Config.in"
+19 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_QHULL
	bool "qhull"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on !BR2_PREFER_STATIC_LIB
	help
	  Qhull computes the convex hull, Delaunay triangulation,
	  Voronoi diagram, halfspace intersection about a point,
	  furthest-site Delaunay triangulation, and furthest-site
	  Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and
	  higher dimensions. Qhull implements the Quickhull algorithm
	  for computing the convex hull. It handles roundoff errors
	  from floating point arithmetic. It computes volumes, surface
	  areas, and approximations to the convex hull.

	  http://www.qhull.org

comment "qhull needs a toolchain w/ C++, dynamic library"
	depends on !BR2_INSTALL_LIBSTDCPP
	depends on BR2_PREFER_STATIC_LIB

package/qhull/qhull.mk

0 → 100644
+14 −0
Original line number Diff line number Diff line
###############################################################################
#
# qhull
#
###############################################################################

QHULL_VERSION = 60d55819729d7b49391dde0271e15a56c70992b9
QHULL_SITE = git://gitorious.org/qhull/qhull.git
QHULL_INSTALL_STAGING = YES
QHULL_LICENSE = BSD-Style
QHULL_LICENSE_FILES = COPYING.txt
QHULL_CONF_OPT = -DCMAKE_BUILD_TYPE=Release

$(eval $(cmake-package))