buildroot/package/qhull/Config.in
Fabrice Fontaine c9012ac8e6 package/qhull: bump to version 8.0.2
- Static libs are supported since version 8.0.2 and
  613debeaea
- Update hash of COPYING, update year and authors with
  4733a95be0
- Update indentation in hash file (two spaces)

https://github.com/qhull/qhull/releases/tag/v8.0.2

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2021-04-04 16:45:19 +02:00

20 lines
770 B
Plaintext

config BR2_PACKAGE_QHULL
bool "qhull"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_4 # needs gcc >= 4.4
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++, gcc >= 4.4"
depends on !BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_4