mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-18 12:40:58 +01:00
41 lines
982 B
Plaintext
41 lines
982 B
Plaintext
easyblock = 'CMakeMake'
|
|
|
|
name = 'Qhull'
|
|
version = '2015.2'
|
|
|
|
homepage = 'http://www.qhull.org'
|
|
description = """
|
|
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.
|
|
"""
|
|
|
|
toolchain = {'name': 'dummy', 'version': ''}
|
|
|
|
sources = ['%(namelower)s-%(version_major)s-src-7.%(version_minor)s.0.tgz']
|
|
source_urls = ['http://www.qhull.org/download/']
|
|
|
|
patches = [
|
|
'Qhull-%(version)s-intel-fix.patch',
|
|
'Qhull_pkgconfig.patch',
|
|
]
|
|
|
|
builddependencies = [('CMake', '3.8.1')]
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/qhull',
|
|
'lib/libqhull.%s' %
|
|
SHLIB_EXT,
|
|
'lib/pkgconfig/qhull.pc'],
|
|
'dirs': [],
|
|
}
|
|
|
|
modextrapaths = {
|
|
'CPATH': ['qhull/include'],
|
|
}
|
|
|
|
parallel = 1
|
|
|
|
moduleclass = 'math'
|