cmake/meson: Mass fix packages with broken debuginfo (#12822)

* cmake/debuginfo: Mass fix packages with broken debuginfo

* rtl_sdr: Fix trailing whitespace

* meson/debuginfo: Mass fix packages with broken debuginfo

* clean up conflicts

---------

Co-authored-by: Luc Schrijvers <begasus@gmail.com>
This commit is contained in:
Alexander von Gluck
2026-01-07 16:36:21 +00:00
committed by GitHub
parent 3dca187708
commit 47ea51f320
55 changed files with 111 additions and 240 deletions

View File

@@ -4,7 +4,7 @@ an API for implementing a DAP client or server."
HOMEPAGE="https://github.com/google/cppdap/"
COPYRIGHT="2019-2023 Google LLC"
LICENSE="Apache v2"
REVISION="3"
REVISION="4"
SOURCE_URI="https://github.com/google/cppdap/archive/dap-$portVersion-a.tar.gz"
CHECKSUM_SHA256="5d35ca5db78570b6bef698e3365f79bd82a4f78e8393546387f78d7bdb2a2a08"
SOURCE_DIR="cppdap-dap-$portVersion-a"
@@ -49,7 +49,7 @@ defineDebugInfoPackage cppdap$secondaryArchSuffix \
BUILD()
{
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCPPDAP_USE_EXTERNAL_NLOHMANN_JSON_PACKAGE=ON \
-DBUILD_SHARED_LIBS=ON \
$cmakeDirArgs

View File

@@ -6,7 +6,7 @@ including self-intersecting polygons."
HOMEPAGE="https://sourceforge.net/projects/polyclipping/"
COPYRIGHT="2010-2019 Angus Johnson"
LICENSE="Boost v1.0"
REVISION="2"
REVISION="3"
SOURCE_URI="http://downloads.sourceforge.net/polyclipping/clipper_ver${portVersion}.zip"
CHECKSUM_SHA256="a14320d82194807c4480ce59c98aa71cd4175a5156645c4e2b3edd330b930627"
SOURCE_DIR=""
@@ -58,7 +58,7 @@ PATCH()
BUILD()
{
mkdir -p build && cd "$_"
cmake ../cpp -DCMAKE_BUILD_TYPE=Release \
cmake ../cpp -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX:PATH="$prefix"
make $jobArgs
}