package/pkg-cmake.mk: force config version >=3.5
Some packages have CMakeLists.txt requiring CMake <3.5.
Newer CMake forces at minimum version 3.5, leading to build failures:
https://github.com/skiffos/SkiffOS/actions/runs/14208988354/job/39812576139#step:8:638
https://github.com/skiffos/SkiffOS/actions/runs/14211566256/job/39819600184#step:8:26664
Add the suggested build flag to force version 3.5.x and fix the error:
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
This is applied to all cmake packages to force 3.5 as a minimum.
Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Thomas Perale <thomas.perale@mind.be>