Package Details: medcoupling 9.14.0-1

Git Clone URL: https://aur.archlinux.org/medcoupling.git (read-only, click to copy)
Package Base: medcoupling
Description: Field data manipulation library
Upstream URL: https://www.salome-platform.org
Licenses: LGPL2+
Submitter: xantares
Maintainer: None
Last Packager: xantares
Votes: 0
Popularity: 0.000000
First Submitted: 2024-06-14 16:13 (UTC)
Last Updated: 2025-03-07 18:55 (UTC)

Latest Comments

code_glitch commented on 2025-10-13 20:05 (UTC) (edited on 2025-10-13 20:07 (UTC) by code_glitch)

Nasty way to fix the CMAKE version in medoupling since pre-3.5 CMAKE version requests will cause a crash: add a prepare block to replace the CMAKE version in the sources it pulls. For those of us which have freecad or other software that requires hdf5-openmpi or med-openmpi, it is also necessary to add -DSALOME_USE_MPI=ON to the build options.

prepare() {
    cd "$srcdir/$_pkgname/medcoupling"

    sed -i 's/CMAKE_MINIMUM_REQUIRED(VERSION 2.8.11 FATAL_ERROR)/cmake_minimum_required(VERSION 3.5)/' CMakeLists.txt
}