meshlab: disable two failing plugins

This commit is contained in:
Wouter Deconinck
2024-04-01 15:44:12 -05:00
parent 0e71ea51ce
commit 94a42d786f

View File

@@ -30,5 +30,11 @@ class Meshlab(CMakePackage):
def cmake_args(self):
args = [
self.define_from_variant("MESHLAB_BUILD_WITH_DOUBLE_SCALAR", "double_scalar"),
# E57 and Nexus plugins fail on gcc-13 due to missing include cstdint,
# but patching is cumbersome since build process downloads their source.
# Ref: https://github.com/asmaloney/libE57Format/pull/176
self.define("MESHLAB_ALLOW_DOWNLOAD_SOURCE_LIBE57", False),
# Ref: https://github.com/cnr-isti-vclab/corto/pull/44
self.define("MESHLAB_ALLOW_DOWNLOAD_SOURCE_NEXUS", False),
]
return args